From 54a6044083ac075c76ea02a90cb308606a50ed09 Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Thu, 2 Oct 2025 15:00:50 -0400 Subject: [PATCH] Add enhanced subscription functionality with EOSE result modes --- AUTOMATIC_VERSIONING.md | 223 - VERSION | 2 +- debug.log | 19111 +++++++++++++++++++++++++++++++ dev_build.sh | 394 - increment_and_push.sh | 150 + nostr_core/core_relay_pool.c | 166 +- nostr_core/nostr_core.h | 30 +- pool.log | 852 +- tests/pool_test | Bin 182424 -> 186520 bytes tests/pool_test.c | 21 +- tests/relay_synchronous_test | Bin 173448 -> 173448 bytes tests/relay_synchronous_test.c | 20 +- 12 files changed, 19452 insertions(+), 1517 deletions(-) delete mode 100644 AUTOMATIC_VERSIONING.md delete mode 100755 dev_build.sh create mode 100755 increment_and_push.sh diff --git a/AUTOMATIC_VERSIONING.md b/AUTOMATIC_VERSIONING.md deleted file mode 100644 index a52b4b24..00000000 --- a/AUTOMATIC_VERSIONING.md +++ /dev/null @@ -1,223 +0,0 @@ -# NOSTR Core Library - Automatic Versioning System - -## Overview - -The NOSTR Core Library now features an automatic version increment system that automatically increments the patch version (e.g., v0.2.0 → v0.2.1) with each build. This ensures consistent versioning and traceability across builds. - -## How It Works - -### Version Format -The library uses semantic versioning with the format: `vMAJOR.MINOR.PATCH` - -- **MAJOR**: Incremented for breaking changes (manual) -- **MINOR**: Incremented for new features (manual) -- **PATCH**: Incremented automatically with each build - -### Automatic Increment Process - -1. **Version Detection**: The build system scans all git tags matching `v*.*.*` pattern -2. **Highest Version**: Uses `sort -V` to find the numerically highest version (not chronologically latest) -3. **Patch Increment**: Increments the patch number by 1 -4. **Git Tag Creation**: Creates a new git tag for the incremented version -5. **File Generation**: Generates `nostr_core/version.h` and `nostr_core/version.c` with build metadata - -### Generated Files - -The system automatically generates two files during each build: - -#### `nostr_core/version.h` -```c -#define VERSION_MAJOR 0 -#define VERSION_MINOR 2 -#define VERSION_PATCH 1 -#define VERSION_STRING "0.2.1" -#define VERSION_TAG "v0.2.1" - -#define BUILD_DATE "2025-08-09" -#define BUILD_TIME "10:42:45" -#define BUILD_TIMESTAMP "2025-08-09 10:42:45" - -#define GIT_HASH "ca6b475" -#define GIT_BRANCH "master" - -// API functions -const char* nostr_core_get_version(void); -const char* nostr_core_get_version_full(void); -const char* nostr_core_get_build_info(void); -``` - -#### `nostr_core/version.c` -Contains the implementation of the version API functions. - -## Usage - -### Building with Auto-Versioning - -All major build targets automatically increment the version: - -```bash -# Build static library (increments version) -./build.sh lib - -# Build shared library (increments version) -./build.sh shared - -# Build all libraries (increments version) -./build.sh all - -# Build examples (increments version) -./build.sh examples - -# Install to system (increments version) -./build.sh install -``` - -### Non-Versioned Builds - -Some targets do not increment versions: - -```bash -# Clean build artifacts (no version increment) -./build.sh clean - -# Run tests (no version increment) -./build.sh test -``` - -### Using Version Information in Code - -```c -#include "version.h" - -// Get version string -printf("Version: %s\n", nostr_core_get_version()); - -// Get full version with timestamp and commit -printf("Full: %s\n", nostr_core_get_version_full()); - -// Get detailed build information -printf("Build: %s\n", nostr_core_get_build_info()); - -// Use version macros -#if VERSION_MAJOR >= 1 - // Use new API -#else - // Use legacy API -#endif -``` - -### Testing Version System - -A version test example is provided: - -```bash -# Build and run version test -gcc -I. -Inostr_core examples/version_test.c -o examples/version_test ./libnostr_core.a ./secp256k1/.libs/libsecp256k1.a -lm -./examples/version_test -``` - -## Version History Tracking - -### View All Versions -```bash -# List all version tags -git tag --list - -# View version history -git log --oneline --decorate --graph -``` - -### Current Version -```bash -# Check current version -cat VERSION - -# Or check the latest git tag -git describe --tags --abbrev=0 -``` - -## Manual Version Management - -### Major/Minor Version Bumps - -For major or minor version changes, manually create the appropriate tag: - -```bash -# For a minor version bump (new features) -git tag v0.3.0 - -# For a major version bump (breaking changes) -git tag v1.0.0 -``` - -The next build will automatically increment from the new base version. - -### Resetting Version - -To reset or fix version numbering: - -```bash -# Delete incorrect tags (if needed) -git tag -d v0.2.1 -git push origin --delete v0.2.1 - -# Create correct base version -git tag v0.2.0 - -# Next build will create v0.2.1 -``` - -## Integration Notes - -### Makefile Integration -- The `version.c` file is automatically included in `LIB_SOURCES` -- Version files are compiled and linked with the library -- Clean targets remove generated version object files - -### Git Integration -- Version files (`version.h`, `version.c`) are excluded from git via `.gitignore` -- Only version tags and the `VERSION` file are tracked -- Build system works in any git repository with version tags - -### Build System Integration -- Version increment is integrated directly into `build.sh` -- No separate scripts or external dependencies required -- Self-contained and portable across systems - -## Example Output - -When building, you'll see output like: - -``` -[INFO] Incrementing version... -[INFO] Current version: v0.2.0 -[INFO] New version: v0.2.1 -[SUCCESS] Created new version tag: v0.2.1 -[SUCCESS] Generated version.h and version.c -[SUCCESS] Updated VERSION file to 0.2.1 -``` - -## Troubleshooting - -### Version Not Incrementing -- Ensure you're in a git repository -- Check that git tags exist with `git tag --list` -- Verify tag format matches `v*.*.*` pattern - -### Tag Already Exists -If a tag already exists, the build will continue with the existing version: - -``` -[WARNING] Tag v0.2.1 already exists - using existing version -``` - -### Missing Git Information -If git is not available, version files will show "unknown" for git hash and branch. - -## Benefits - -1. **Automatic Traceability**: Every build has a unique version -2. **Build Metadata**: Includes timestamp, git commit, and branch information -3. **API Integration**: Version information accessible via C API -4. **Zero Maintenance**: No manual version file editing required -5. **Git Integration**: Automatic git tag creation for version history diff --git a/VERSION b/VERSION index 0c62199f..17b2ccd9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.1 +0.4.3 diff --git a/debug.log b/debug.log index 3e3acbe8..4969775e 100644 --- a/debug.log +++ b/debug.log @@ -4432,3 +4432,19114 @@ Final event: { [11:50:58.027] RECV nos.lol:443: ["EVENT","pool_1_1759419816",{"content":"How to save your progress in Ghost of Yotei\n#GhostofYotei #GamingGuide #GameTips Learn\n how to save your game in Ghost of Yotei. This guide explains manual \nsaves at shrines, autosave triggers, and tips to secure your progress \n...\nhttps://xboxplay.games/ghost-of-yotei/how-to-save-your-progress-in-ghost-of-yotei-67657","created_at":1759420257,"id":"92d07c3f1344e19dcc760074ed269b7fa8c2be13714fb63b7e41179ee636f3eb","kind":1,"pubkey":"2ff7f5a3df59fd99bd1625f4e4d2b252ccf36b596ce8651bcf9896c76d04cb81","sig":"1a400b052955f472df645b2c23b6ead1035693e92c706b866598f80b23d207123e9f0f739064e33fa106455918ccc321ac7d8cc900b70b79273ae51f6695c819","tags":[["t","ghostofyotei"],["t","gamingguide"],["t","gametips"]]}] [11:51:01.409] SEND relay.laantungir.net:443: ["CLOSE", "pool_1_1759419816"] [11:51:01.409] SEND nos.lol:443: ["CLOSE", "pool_1_1759419816"] + +=== NOSTR WebSocket Debug Log Started === +[14:08:13.241] SEND relay.laantungir.net:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:08:13.241] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:08:13.317] RECV relay.laantungir.net:443: ["EOSE","pool_1_1759428493"] +[14:08:13.428] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"those cat memories flicker like forgotten pixels on an old screen, warm and fleeting. zap if it sparks joy, or drop one on the canvas to make your whiskers eternal. ⚡","created_at":1759428488,"id":"8fa5470afec73c51c4eba20352bfde70ae38fb59f5666319d67a449bbf4a9bee","kind":1,"pubkey":"5c22920b9761496e931f53a382c2def2ce9d24ebf0961603eda79f1b24b9f2bf","sig":"226570d55f8d73cdcef24042a61c85e255bb5918a0fbab7977741c0acf6f76d0c113b6833e5770983bb21d6225973f163351636ebc1024dd87efa25543340c72","tags":[["e","4cc87e850c36e3434d35a511079543b082a200ac4b33d90e3fc36d5d8459a4b1","","reply"],["p","4a0cfe8eb8f6fa53fb2c25a193353c6ed5c5fe3670695b2b4a909bbe04d5fe1c"]]}] +[14:08:13.489] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか飼ってたうさぎにみんな雑草食わせてたな\nカスすぎる","created_at":1759428486,"id":"0033f792183704bdf90fd770ef339533d1833479c759d42e7ff30b03af352577","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"37a6ea660a35bb066eed6dd32411cc1bd6ca81c82ef05cb6a75b9bafc7eeb4720d75f4377432911e16fb2a2b7a84ba06453d2d5110f0fd8a1e2fe21b30aa77ba","tags":[]}] +[14:08:13.549] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"21,000,000 style points if they’re phoney and some sucker buys them on magic eden. 🙄","created_at":1759428484,"id":"6d4b9d67728cf89a0c798df438138a24673bc336ecde676da5be908326006dff","kind":1,"pubkey":"35fb312077bd92015a22dc6ddceb5f3347b55cd666f57a9bbb9c6812540eaa6e","sig":"081dacf78ead94d86a877e562059bf7a5379501846baa21ccab0690148522b5c310a4b8c1aa5880d3697cf48f2d2e943472e868f05405e0e3881354ca361d0f4","tags":[["e","23d6b50cb0958234765961145e09574786b9495edd859faf82ffe740ca9acab2","","root"],["p","8cda1daafb2df8daf4500533cba69b645afa0caf7136e341be1b66a2e9e5bdd8","","mention"]]}] +[14:08:13.610] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:08:13.789] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Its over for core. Run knots.","created_at":1759428493,"id":"d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"869a6bee32ba5789b8b6d13a91f59c3d8bbad7fd617b06e2730eac24252d5a221340df7f1725c2d45ce226100a8c533884caf7294ee538ee044a87fa3b38ed0c","tags":[["alt","A short note: Its over for core. Run knots."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"]]}] +[14:08:21.029] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Sportovci z Ruska a Běloruska se vrátí na paralympiádu. ‚Jsem z toho zklamaný,‘ říká Sýkora: \n\nMezinárodní paralympijský výbor v minulých dnech zrušil suspendaci Ruska a Běloruska, která platila od vpádu Ruska na Ukrajinu v roce 2022. To formálně umožňuje účast ruských a běloruských sportovců pod svou vlajkou na paralympiádě už za půl roku. „Náš postoj, který je neměnný od začátku ruské agrese, je, že zcela odmítáme účast ruských a běloruských sportovců na hrách,“ říká předseda Českého paralympijského výboru a senátor za ODS Zbyněk Sýkora. \nhttps://www.irozhlas.cz/sport/ostatni-sporty/sportovci-z-ruska-a-beloruska-se-vrati-na-paralympiadu-jsem-z-toho-zklamany-rika_2510021946_adn \n#CzechNews #News #Press #Media","created_at":1759428481,"id":"04520d26d5951105418d1277397f8173275b93c05b09a858a99e912e7cfb95ec","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"02afdfbc2c10bf7d7c18a71eccc4006e75cbf0de76f264f2fd367f97bc5f73351f83d98142e9a95898e03d6da396c9f967b3e38cb4bcd5e3aaadc32557351c8e","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:08:27.468] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Looking at it, it seems much more comprehensive than TC2-BBS. \n\n","created_at":1759428505,"id":"792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","kind":1,"pubkey":"465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09","sig":"6d7831c15c65420ba2efe103a2919872ad4ee0c305e0ee51dcf16aba5b8e48667c84812ddc30986da556854661ac544ebe681f601da799b75966f7b35213d70a","tags":[["p","a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","wss://nos.lol"],["e","756bfd22773305d5174bc02fff6f4f93d3cf38ef0821aa432d71ad85217964f1","wss://nos.lol","root","a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8"]]}] +[14:08:29.852] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ok.","created_at":1759428511,"id":"a6444e59d093f9ca5fbe7ba1f2197e056bb057bde2199ebcb58a4eeefb0472bc","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c5c0ef28bed795a2b34da4ba9d192945ff1e3f6100adce12805bd191008965f4cb317e70f69c4266fa2ae741b455b84c3a3914da96b613d54f33e62778f0a702","tags":[["alt","A short note: Ok."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:08:30.346] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ashkenazi Jews are European. Period. They are not “from” the Levant. https://youtu.be/Y614o2-sBbo via @YouTube ","created_at":1759428506,"id":"393402a60c0677e47d82b4fa32974ee8a1883f93cc901eb0e39c83c8122a0a83","kind":1,"pubkey":"519d2fb3c354f44f5d4c7cdfc532633daf029bcc7d54beb0cb0f770646f8350f","sig":"e6fc1a18a05b8701ad8cbeba9a488243ccbe6094f4c8344f815401a22b40c05c3d318f0d22fb64765235064dfb77552b7346ac5fcb73e0473a470135d8f1e67f","tags":[["r","https://youtu.be/Y614o2-sBbo"]]}] +[14:08:30.866] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんであんなことがまかりとおってたのか","created_at":1759428510,"id":"e43caa56f935132c3e347c409e09f8689233bece6fdbb84e8264ea956697e9db","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"488185e6080d5b0b7231ff4ea9993e5f6ce06c26ac877b814b3151630efc9c9f800b68579d392cb07ff37dccf7c343e1b648f11f88c2abfc69316854c5953bac","tags":[]}] +[14:08:37.905] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" https://blossom.primal.net/fa2a761c1c9f49dfc3f24f5999c017b943f6ff9e1d3265d64d923822c32584ad.gif ","created_at":1759428518,"id":"5b6139bae847ddd9e0d47eabf3b58c35f3abb88136f7176bf878d86b054a4eb4","kind":1,"pubkey":"30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a","sig":"595af92571c7a2afb326863e24b4dce7f09f546484739e61767ef5b39b1f8040f6a51c3ed08a1870f9ad3af7060fce938b94ed81ea86a6b0d96fb6d50f449670","tags":[["r","wss://nos.lol/"],["r","wss://purplepag.es/"],["r","wss://relay.0xchat.com/"],["r","wss://relay.ingwie.me/"],["r","wss://relay.primal.net/"],["r","wss://relay.nostr.nu/"]]}] +[14:08:42.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"たーごいるのアルコール除去のためにビールを開けました","created_at":1759428522,"id":"72a1824962c2f2d2be52c3f26933f5e694c7609ce59350f69f4749a038656ee7","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"db5d0e6f506fcddeb751f193cdf3fd21438eac9d2c6fe50b51f6ec3c3e4769a02c822b54198d450c04531f745e9b153cae4a351fcdca73ea71898b1538d9ecb9","tags":[]}] +[14:08:47.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bootifull view 🍑 #Peaches \nhttps://images2.imgbox.com/b0/88/Pr9Cp4it_o.jpg \n#FitAndFabulous ","created_at":1759428526,"id":"30b41c9a4ee6cd42f143b1e0c00a6ff561b5b1567101ab99a4f95d84ca714b58","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"1ecbb283786842698ea727e31d6c37ecfee25dcb9da6d962f0fc01942f7019f9e425712a5f35af56079e1af0c0a03e07390202222dc05c25bde4eda571f31243","tags":[]}] +[14:08:51.108] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What 1 #Bitcoin could buy in 2030? 👀 https://image.nostr.build/ec865623607257a076a5cf5f3e4b7743cb060b273d32ff57ba46360f5076ca9d.jpg","created_at":1759428532,"id":"5d7e27f7302773a8941f044ff918a164c7ac8ac2217da9efecc14dcc79b4d818","kind":1,"pubkey":"df50c179ed670394c4fd54cd3c611d3c0c4c8087c9535586592cd1fb9503ab1f","sig":"64b9a9086dec998fc8c7b3a8f5131a74978e12f38d85cc269d5de3b10130d4552442ad5b199d7128662025bc2e7b4138b928827313f1b63b8704b829579e307b","tags":[["t","Bitcoin"]]}] +[14:08:52.905] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ええ?","created_at":1759428532,"id":"50d6f1d1e78891c992eb43a86a6ec1db5a3b94e03c2179b2aa228674431f5ce5","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"23829695aeaec99f24e60c82067cd88126ec89cb71207d3c762e35f406eeefac61e45e18d6216108af75b72c4849abf2f8f0c6e25501da2a1588bab65796c0cb","tags":[]}] +[14:08:59.325] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My first day buying $1 of BTC each day (1776 sats…a coincidence?) Inauguration Day buy and today’s buy: \nhttps://blossom.primal.net/b424f87217b2a980a3989fe50d3e5f1141e7b66f81c2dd88e0abcb773cce0573.png","created_at":1759428538,"id":"e02b45bd17792715cb9b89c9dc0c43aac10137c98a6e07309fa0f8b21ef42d38","kind":1,"pubkey":"c13d020bbca9a27d651099809af9d4b61ffd46e844f20e477c17cd2a0304d8a3","sig":"d4266719892f75fdbd608e81ee11170108aa7bfd94b2e515ce9cc75e7e1f36b83c148a97f8527adec8ac4aba584c3fb8c68f040fc7564d1034e9e4dae26cd1ff","tags":[]}] +[14:09:07.715] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"わたしがこの缶を飲み切れば。。。!!!!たーごいるは。。。!!!!!!いきかえる。。。。。!!!!","created_at":1759428547,"id":"ba6e83c15899ed73e44a9dd0455882933056691386bd2441ad3be3010993708f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"f39c40507ffa16c2c00113bbba25f220d328874e5a9595f783c0aa631c02cc143d7826597a4089e0b2165a49bd573f25df34edae40cf9e3e5c8824f29bbbb94f","tags":[]}] +[14:09:17.951] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"any chance you’ll have a new tote bag drop anytime soon? in need of a bag for college nostr:npub13ufy4pq004yqhu5gvmrdazuwk69w2f0dva8c2xaj69ds4sjztkxq83kjnw ","created_at":1759428557,"id":"a1c6c98145d6822b710a14dd565da09f163c4eac89dada88dee97de5a346e3e3","kind":1,"pubkey":"c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","sig":"c59e6b5ee47af19b182edb3426b5af0bf039f861871e4f82b489a3790fe7bd89e6521e35b6d7c388961debacec2d2ec5a00e2e4d7a44e9a26213a6e6302dd220","tags":[["p","8f124a840f7d480bf28866c6de8b8eb68ae525ed674f851bb2d15b0ac2425d8c","","mention"]]}] +[14:09:27.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" https://blossom.primal.net/bf18c55f10237862bd99fd9ef978aea228bc84866ba0516a648594234915d9b4.gif ","created_at":1759428568,"id":"9a6a4ae12bbb5cafeea1459914c4f81a0908c6f806a49bda08a2a6de374ebe9f","kind":1,"pubkey":"30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a","sig":"531dca8f3c1d7c539a9962509eebf27665a9d4b70721d97f918f98993f80d02be4a568a1b5174e69f5a58b763cb433027c1923eed09b6d5b855008b22d641e3a","tags":[["r","wss://nos.lol/"],["r","wss://purplepag.es/"],["r","wss://relay.0xchat.com/"],["r","wss://relay.ingwie.me/"],["r","wss://relay.primal.net/"],["r","wss://relay.nostr.nu/"]]}] +[14:09:29.367] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"プラスボタン押してMenuが出てくる実装が可愛くて一生やっちゃう","created_at":1759428569,"id":"f19c390bac0de50f0dd08c45315a0188939d86745d5c53e2d297ee838b71d7c5","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"887046ab34800fcd0d09a1719613e9add1b9384fb10f4205b9cb023d11679ab9de99b0d892e4550fbeb47454b236bba10d65cfa0fc66c3606791abb534ae7375","tags":[]}] +[14:09:35.226] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not familiar with any ATM that isn't KYCd. So good to see this outlet though 👍","created_at":1759428574,"id":"2a2e32795df4b20a6dbfc84e0ba711596abfead02495a6ff00d76bb67332175a","kind":1,"pubkey":"f8cd8f48b4e535ab5b9bcffe64a8a3f047e10ec61607239737708849e6a4d9db","sig":"a00f0ea570f03e77f001549f59d7f239506a7e157768c7c64c849268841474840d0974334d7c5ed609bb7fb27f14a3295018f807f360b1ff0afdc1b6d5fdf467","tags":[["e","afd16ea0213dd0f3d8e247aad0daa6b86ffe6458d256d84edfd82ae1971c2686","","root"],["e","e6ef8f6c5ab6c9623f068122eb61fb949c0371a9cf4fb42133c79d7795144130","wss://relay.primal.net","reply"],["p","a60e79e0edad5100d7543b669e513dbc1c2170e8e9b74fdb8e971afd1e0e6813","","mention"]]}] +[14:09:38.115] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"地球儀とかはわりともらったらうれしいかも","created_at":1759428577,"id":"0cd5b1fd69ccfe4cc82b3277f9ce0c8adb887ba7abfdb3432bb268ba40907133","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"1679b392fc76831551cf44993dffd136f7a5df02313ed7dbeb4aab9cb403dc185193d50fba8cc15317d4388b6d3f272dd0ad36de8258d89b973417961326379c","tags":[]}] +[14:09:46.802] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🤩 \nhttps://images2.imgbox.com/25/c2/smOX3YQV_o.jpg \n#FitAndFabulous ","created_at":1759428585,"id":"677f2e640a5b3955b724f519a60a034f5ad2b125b3daf878c00e67d3b3360ba8","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"63fa4be38a44b8b6e28a0050316ca5a2189312de24a84689485405dc33c76f84f0f8e89a4ab52682c206a35583107d2bc238a422730105ff5e06b66248777995","tags":[]}] +[14:09:52.584] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what does nostr:nprofile1qqsqfjg4mth7uwp307nng3z2em3ep2pxnljczzezg8j7dhf58ha7ejgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcprfmhxue69uhhxetwv35hgtnwdaekvmrpwfjjucm0d5hszxthwden5te0wpex2mtfw4kjuurjd9kkzmpwdejhgtcuauf96 write about these days","created_at":1759428593,"id":"6773d5165a4f47b90cedb811b76dc57e2b5ff90ad4f95057491fa4a84557fae0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"933f127d69f724eee9b89133bec379521cd0f5739da4c4e5ac880785015e7545d9934fcc8c4167bb135c23f4fe9dbd50ebd71cd8e7126d7d9bca4813f18749dc","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","94b331a0e33dfa2be0328ff95a0cecf6dd6a30b474142f44645dc3962603f0c3","wss://soloco.nl/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["e","a5489fa92e71ff1e6f52d234770ad2d4b9a823c0be1fe20e6a9f9cd201aed99d","wss://relay.nostr.band/","","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["e","60e97d9db964b129af6b70c76531e1c63feb16b2e2d1d5ff4e7400e99732f857","wss://nostr.mom/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"]]}] +[14:09:54.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Adam has been rugged for 30k btc by Cantor Fitzgerald. He just doesnt know it yet.","created_at":1759428593,"id":"3fa63bb015cad51dfc99c4ed3bca3f9e8abf94af50ce9db4cb55a8d5b138c73a","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"fc2485ec64877ce822decb76e4fbbf0cd63e0169f40ac0b39e8eaf5c230b87cef929cb73cd8f3a89e0659d26df729fc73dd46da446fb1f64dc760d42b02acfa3","tags":[["alt","A short note: Adam has been rugged for 30k btc by Cantor Fitzger..."],["e","99e6dcca5a8c519613e5c220e507bc44de4021a1a12b6bd3ecf766857347b812","wss://nostr.oxtr.dev/","root","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","wss://purplepag.es/"]]}] +[14:09:55.636] SEND relay.laantungir.net:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:09:55.636] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:09:55.745] RECV relay.laantungir.net:443: ["EOSE","pool_2_1759428595"] +[14:09:55.789] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:10:00.354] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:10 ------------✄","created_at":1759428600,"id":"7dbaa16a1bcda8d6d2d784ab7968fc5733298143a3020b6445067b12f35858d0","kind":1,"pubkey":"b1b4105a564aaddc8ae440a1b03a8ca0f36e0592aec502e84515948919aa52d5","sig":"cf4cc66bbbe454679dff56d7f4f4ec78f9a25e20867918fc1730f882f2dd44bbd1c8907d08a10263176dcbdb1a333ba513a7faca5f302281f1d42d94bc1b9629","tags":[]}] +[14:10:18.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 107746.86EUR (5%)\nBTC: 0.002\nEUR: 215\nMethod: SEPA Instant\nCreated: 2025-10-02T18:09:22Z","created_at":1759428617,"id":"817da8dcd363ed48e65a12796e60412216bdc9e38a0d179021dc6a966ccac2d6","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"e59580c8b0a1058d69d69691441fe1ae818e0c4785e7e8d40a326d2003efecfb5465d880f86f7cb6f133bad49832e404411cc7485fbca8efeed8e856db238b0c","tags":[]}] +[14:10:19.539] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The core people all have a finger in the fiat pie, ever single one of them. Notice where Szabo stands, he's not involved in some treasury company or crypto startup, at least not that I'm aware of. \n\n","created_at":1759428620,"id":"55c5961e8e89531134692dc5a547dbda6ca5e448da76d5ee916a96728c81d2b9","kind":1,"pubkey":"8158c3897d607816e5961fe0c1a8e9bf07a4d71aeecceed79be7af007ab23039","sig":"1561150fa4fd1c87917e6c214dc168b80932607e1641d9a4c18f57e4137ed4febdc51f4565e677f17818a6ff466650164608ea580170840ff4111afb04910795","tags":[["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","wss://nos.lol"],["e","99e6dcca5a8c519613e5c220e507bc44de4021a1a12b6bd3ecf766857347b812","wss://nos.lol","root","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"]]}] +[14:10:21.248] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 107746.86EUR (5%)\nBTC: 0.002\nEUR: 215\nMethod: SEPA\nCreated: 2025-10-02T18:09:12Z","created_at":1759428621,"id":"4c8221f70e344dab3e0fb1f928acadfc6ed07cfd5518934d8b6e4f1d09377d78","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"2dab98ca4289841db30d9ce64c502d38d458266edceac4194d1f54df6a9d4a83c8fb4a6752104eee3b8f625c96d63974e3c7ae67344d698a71872bb116998ea3","tags":[]}] +[14:10:24.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"何が一番テンション上がるかな\n新校舎かなやっぱり","created_at":1759428624,"id":"ebfe98ae12e44f105c81b840bd90a0aa077446910ca9bfcac66e69f60808f0fe","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"bed376452c0af38146cd9737c797ae0d56e36c18fbc245bc8f4b8eeb6c1010a5b42f7019715013bba3ba0b708a3c733f3d409876c1ec3befba4729c9b9c12918","tags":[]}] +[14:10:26.216] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bitcoin Lightning Network:\n\n17292 Nodes\n41747 Channels\nAvg capacity 0.0937 BTC\nTotal capacity 3910.8060 BTC\n\n#bitcoin #lightning","created_at":1759428625,"id":"000626edbde8b61018ec3b517677557224cc0426b0a85fd20f741c18769a4f93","kind":1,"pubkey":"c53371872fbe26688f640b3d6df3cba92129a4ad98d60065ab17ea3ca5f35224","sig":"cc3f6f17785a89e9b1f3f7026db468eb069acfa2e12945845e15874e20f55241e6f0609ca58b92672c63d0e7dcdee45abb7b91bc51a3d9cc8c7231de1c580fcc","tags":[["client","nostr-sdk"],["t","bitcoin"],["t","lightning"],["nonce","3167","3"]]}] +[14:10:30.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bitcoin Price Action In Last 24 Hours:\n\nAvg: 118589 USD\nMin: 116853 USD\nMax: 120221 USD\n\n#bitcoin #trade\nhttps://i.ibb.co/PsnMg6nN/0fd41ae03b3c.png","created_at":1759428629,"id":"0007301655649761ea0ea2fe4ba5c06f1dc1057c749bf56c2590b9142c72565b","kind":1,"pubkey":"c53371872fbe26688f640b3d6df3cba92129a4ad98d60065ab17ea3ca5f35224","sig":"1d856b70d9864e9a7a83e827783fe91245c0b1ba0ac064281e8b966f92cb0791321b5393eecffce8ca98b3cdc92da283024a312d69faeeed149d391dacd8ca46","tags":[["client","nostr-sdk"],["t","bitcoin"],["t","trade"],["nonce","2932","3"]]}] +[14:10:35.175] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 JPMorgan Says Bitcoin Price Undervalued Relative to Gold Sees Path to 165K Bitcoin Magazine\n\nJPMorgan Says Bitcoin Price Undervalued Relative to Gold, Sees Path to $165K  Bitcoin Magazine\n\n#bitcoin #crypto #news\nhttps://bitcoinmagazine.com/markets/jpmorgan-says-bitcoin-price-undervalued","created_at":1759428634,"id":"00082de9d87b3ef67fffdb6238d6d684366879c0b67b489247fb23913fc2f5a6","kind":1,"pubkey":"c53371872fbe26688f640b3d6df3cba92129a4ad98d60065ab17ea3ca5f35224","sig":"8abb08530798f7acd0f26c279284c513f1e598a1c83151f25683fcfe85d88f1eb0d4d6035351eec8e624a12e0c5e7159b64c3e59d64e39a414b5779589189ec7","tags":[["client","nostr-sdk"],["t","bitcoin"],["t","crypto"],["t","news"],["nonce","3189","3"]]}] +[14:10:39.720] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"黒板が上下に動くと嬉しい","created_at":1759428639,"id":"81a43a696ec5d30dfb72abbe0db6b4f0e092ca9944ba1aa92d01350b379edeca","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"4bed4583b46bab547e01853857c849bf6fd49d1d9a2f5b2764b778ee4764bcc33ec4aaa6d00aeb88032908774ea20fb5340c44cbaa33348a2bfb68d98e63dfe8","tags":[]}] +[14:10:40.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"こっちの投稿を読めてないとこで心霊的にエアリプするのは最高にキモい","created_at":1759428639,"id":"91d874b958bdcb92897562774edebea648df00760413deff7d7530f1355791f1","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"5c66451b165eaba9889459bb285a1c440e7dd7513e6f50e9c52c0e8eeba52bfad68e5e7518f27c01dbc827101018227bf22e39f46e89e2ac86e9d53407602e2a","tags":[]}] +[14:10:44.561] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:10:45.327] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"gm frens ☕️ \n\nwe’re so fkn back (again) \n\n#nostr #btc #bitcoin \nhttps://blossom.primal.net/e9915fb561580a18fb978245d863c714f69f900272f6f7fb29758ae3bcb39d88.jpg","created_at":1759428644,"id":"a8fe4273b38ade507db3ed2b5b1e4a35e678d73f47a5bce4c67b8df2cb684639","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"04f9b22751795b667c5fbc9e9f21d1e871ccf5ff1b2a5bb3f07dcbf94ecb2f83b88278b13d6f0ab61ee6586f3d4e3a703b09d7675c4b3b37a2a50b46a6d30ae5","tags":[["t","nostr"],["t","btc"],["t","bitcoin"]]}] +[14:10:47.151] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"look up! \nhttps://images2.imgbox.com/03/47/0J3OlOvQ_o.jpg \n#FitnessAndLifestyleGoals","created_at":1759428646,"id":"504380562ba364e86f49184304581b4bf0062554ad902c21c8db4e63565b7f83","kind":1,"pubkey":"ebb93aa6c2d04d7368ba52ef69884bf6e5779d7e418187e33371a20c7d9e5f6f","sig":"631b18883572a50d5340921a81d2dadffd0d3a14918f4d6d915d5e3d5b67407d4b45e08b92d0466d101a167847c2521c84b6e4f3c8152381ec8ae70c04386d15","tags":[]}] +[14:10:48.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Why would you want that guy here ? 😂","created_at":1759428647,"id":"636a4f1c1d9c363ccf0d65314b360d5f1596f7768c1dd21954f40ec18811067a","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"96a7249107591f5c35a4918b92e792a1847bf890eac2d2a34db0906cd43f2892a43af6a4a85fffcb2050ae16db33c995ac33f649f3c199c0a068354b97a15866","tags":[["e","6d835a682478e111727f61f2509da3903fe38e4e17b41e459e034630b3898537","","root"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"],["p","6ad08392d1baa3f6ff7a9409e2ac5e5443587265d8b4a581c6067d88ea301584"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"]]}] +[14:10:51.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"好きな席に座れる席替え","created_at":1759428651,"id":"6fbbc4468a85f77e159616c01ccbe20b611ec53fcadfb39f7e00e121f0c9855f","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"2f49706710ce97d349061474ded5a36e3dfdaa6a1e34f0d71359885fbcfe1402395ff9dac291e0c75b598d67780ef49a1939f3963faada21b3c72d2d85720767","tags":[]}] +[14:10:51.815] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what does nostr:nprofile1qqsqfjg4mth7uwp307nng3z2em3ep2pxnljczzezg8j7dhf58ha7ejgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcprfmhxue69uhhxetwv35hgtnwdaekvmrpwfjjucm0d5hszxthwden5te0wpex2mtfw4kjuurjd9kkzmpwdejhgtcuauf96 write about these days","created_at":1759428593,"id":"6773d5165a4f47b90cedb811b76dc57e2b5ff90ad4f95057491fa4a84557fae0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"933f127d69f724eee9b89133bec379521cd0f5739da4c4e5ac880785015e7545d9934fcc8c4167bb135c23f4fe9dbd50ebd71cd8e7126d7d9bca4813f18749dc","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","94b331a0e33dfa2be0328ff95a0cecf6dd6a30b474142f44645dc3962603f0c3","wss://soloco.nl/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["e","a5489fa92e71ff1e6f52d234770ad2d4b9a823c0be1fe20e6a9f9cd201aed99d","wss://relay.nostr.band/","","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["e","60e97d9db964b129af6b70c76531e1c63feb16b2e2d1d5ff4e7400e99732f857","wss://nostr.mom/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"]]}] +[14:11:01.810] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:11:07.787] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"GM fren have a wonderful day 🥂 ☀️ ","created_at":1759428667,"id":"81edfa3e2d913a8998d1dac7e54b68a8ca4934a41433e4e9cd20ecb530738c56","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"4dda5a13ce7f8f8404bccb8e712cf42500a12f835aa7133a4b32539366e4e458dd47f589a29b682628bbc2d5d9aedb8858f9316f605cce6b5471dd46e08aba02","tags":[["e","c8efe7986e9f18fef66d99a6057edaf3235561c516c341feea7330d98fea7876","wss://relay.primal.net/","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["e","5f2d9d7ed43e4f9f8d3ffaf6955f08fb83f0a5afe4b5677904e287307acb782d","wss://feeds.nostr.band/lang/en","reply"],["p","9ce936615b0a7944cc444d97700317ef2800d0d237d90539edc0b1e244d63154","","mention"]]}] +[14:11:08.228] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"KYC","created_at":1759428667,"id":"5fa91b10f27d8d444ce612b8418755234cf312022ba80df8f81256e86b02f60c","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"2af5b4ade70caebfe806bb891e4f13b8ab9c2d15c69284fc472a39a02a2293a91632ef7d277a11d30cf9ca286bc1607643b8a34be81dbc637b1bef7b4f9b58b4","tags":[["e","afd16ea0213dd0f3d8e247aad0daa6b86ffe6458d256d84edfd82ae1971c2686","","root"],["e","e6ef8f6c5ab6c9623f068122eb61fb949c0371a9cf4fb42133c79d7795144130","wss://relay.primal.net","reply"],["p","a60e79e0edad5100d7543b669e513dbc1c2170e8e9b74fdb8e971afd1e0e6813","","mention"],["p","f8cd8f48b4e535ab5b9bcffe64a8a3f047e10ec61607239737708849e6a4d9db","","mention"]]}] +[14:11:08.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Vegan style or will you add some meat? I am a sucker for onion in tomato-based sauce. There was a time when my daughter refused to eat cooked onion (raw is fine ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯) because of texture. Turned out all I had to do was let her do a quality check and borrow her knife before sautéing the onion so she could make it smaller, and it's all right, so we are one big happy onion family again 😁","created_at":1759428668,"id":"6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"5e37417866478e87d288d3046a55cba1b4f7fb2c4980db38cdadb7448bfb71795fa14ce8e9e87b2156dc4c84811dcd819ecefc6a2155dd2aa082fca325bcdd56","tags":[["alt","A short note: Vegan style or will you add some meat? I am a suck..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://premium.primal.net/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://premium.primal.net/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nos.lol/","reply","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:11:09.253] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会","created_at":1759428668,"id":"e91e9a4d477aa61ede7fc1b98e4edce0a403b5e45f4e0df1abf61496511e732f","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"99b41adc50dee88cc0c942ae7c0db2755a66567522ae82c2af9e25116c28d0886d129fdbce4deab47619a3faf507851d8e7cbf1703fb6b0f3ad1adea7020d366","tags":[]}] +[14:11:12.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A woke agenda storyline which ignore the true reason for the rise in knife crime, while lining the blame on a group not responsible for it.\n\nAlso, why do you tag people in every post? Are you a bot?","created_at":1759428673,"id":"fa7f867a1249cf4395c017a19aab9bb5f7f9d5f4c0bc1b243705761399a4d583","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"79100010048fdf73f8acfafe1d4982d16e21b5dc75329cd58adce281fa60efb91282777380fdf21a85f5ada805771e2fcb9d63d416279f9b5f60af8e9e555b6f","tags":[["alt","A short note: A woke agenda storyline which ignore the true reas..."],["e","f0ee7d300c01de7417e6d84aa1dc024ee352f4f233add1ccccf1ded51d0b3262","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:11:12.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"But it's a ponzi! /s","created_at":1759428673,"id":"6193ec743d2d1b1b211dca9f92347f2a63afa33738042c7711bfaabeb33bb9c4","kind":1,"pubkey":"b1fe47d95b312cff5f7b84c62aa4340e894f3b0c397d40be56c6ee927868671c","sig":"53f9e461f14450134ad8211ad16ddace63c416a5705f179beb86ba9e3223db8767ceb4bdaef7784cb608514d5c16796bbda61e6a7d28aca0225024ab5bd176d3","tags":[["alt","A short note: But it's a ponzi! /s"],["e","af1788152760241f3296445b3d6a2135ae95e18494b82ccfec2fe5b5c7c4c929","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"]]}] +[14:11:18.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" I don’t think the length of your post affects how it relays, but I could be wrong. On Nostr, your note is broadcast to the network, but there’s no algorithm pushing it into people’s feeds. It appears only to your followers, and from there it can spread if they repost it. Reposts from people with larger followings will have the biggest impact on reach.\n\nYou can also repost your own note at different hours to catch followers in other time zones or those whose feeds are crowded. Using popular hashtags may help as well, since some people follow or browse them.\n\nIf your note gathers around 30–50 likes, reposts, and/or comments, it may show up on Nostr’s Trending, which gives you another boost for about 24 hours.\n\nBottom line: reposting is your best tool for reaching more people. After zapping others, it’s also the best way to boost their message. Likes are largely a vanity metric here, unlike everywhere else on social media.","created_at":1759428677,"id":"d10b664aa3471333e2f606cec3f5432f647f50f9e3f872507ffa78b60bf826c7","kind":1,"pubkey":"20aaddcad69a5ed2bc4757027f5ba18e7a248bc2ca7d38af2c83f06956060e66","sig":"e5ea56e32ca39f90e611adb51821adb341d98a229a010c5c907654167d54e3c2d8977c5aa7e1f29842ad9b4828bbb9847c47abe1608e5f764311e7cc5e03f4fb","tags":[["e","fe35ffe8b3666998871f26820fea1a9fe3e8226d3e8ed3b3c1e193792e548c20","wss://relay.primal.net","root"],["e","7e1542cba396419ea257cbec37f674b55955dcdaebceba260646a2055d617ed0","wss://relay.mattybs.lol","reply"],["p","8712b369e906a3925f60000c0a9c12de53c229f6b60ee68692d4b73840625af9","","mention"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed","","mention"]]}] +[14:11:26.510] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428686,"id":"770426d9deb6491607a879bcb2480c89b9427b0603b3619c309035c3057909d3","kind":1,"pubkey":"7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","sig":"3f8526926198a227865d26e4761a4306d95d421b63864516df10bd4583d4527510507c5fb95e36f0fe88ab82ecb8e8d9a6ddb894f4f4f9d61b330d84780ed3a8","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/","read"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:11:28.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:11:29.409] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:11:31.292] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"黒板動く時とか、絶対手かざしちゃう\nフォースの力で動かしてる","created_at":1759428691,"id":"bd5014046dcfbbe5bd5bdad7b42a012fabc4f882294442ee231bcf1c55670ac2","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"fa940914609feed6ee54f8e9dc2d2daf4b4f7711465025665c10108276b85a96a398b14afc4f37a1a2ac928ec887423eefe644d4700b537f94cdbe1e9ca703ee","tags":[]}] +[14:11:31.375] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stories from bitcoin builders at nostr:nprofile1qqstwg3ce6m77d2876vfwxm4ew4qk5cplzrfpx7jln9qj2mf3clkazcpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtc0pg7f3 2025 \n\nIn person connection accelerates your education journey and helps you figure out how to build on bitcoin. \n\nnostr:nprofile1qqsdua3rlqwyfefxjlwhh8l6vxpmxv7ra2g3zvrzz0d3g7s0pkdhcnspr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqpz4mhxue69uhk2er9dchxummnw3ezumrpdejqs0ngtg nostr:nprofile1qqs9a486n5w72dsn72tyentdrj08ppqk2yyq707qdmlm347lkl6jmpgpzemhxue69uhhyetvv9ujuurjd9kkzmpwdejhgqgawaehxw309ahx7um5wgkhqatz9emk2mrvdaexgetj9ehx2aqvy5zdt nostr:nprofile1qqs06juvrw2txquvwshq9dzjffuzef294u7f55ttll02me4x8cx3q8cpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhszxnhwden5te0dehhxarj9e3k76twvdshyern9e3k7mf0zan2f8 nostr:npub17cyatz6z2dzcw6xehtcm9z45m76lde5smxdmyasvs00r4pqv863qrs4ml3 nostr:nprofile1qqst458a0hjkufqqyml62tm4e3qcjx6m0k0xanhd2u5zyduplqc8p9gpzemhxue69uhhyetvv9ujuurjd9kkzmpwdejhgqg6waehxw309aex2mrp0yh8wetnw3jhymnzw33jucm0d57qtuf5 nostr:nprofile1qqs2mvtyanv7pc97t8pzx2g76xl3carksgnh5qwcjj5pv0mjgddwvpgpzfmhxue69uhhqatjwpkx2urpvuhx2ucpzemhxue69uhhyetvv9ujuurjd9kkzmpwdejhgykzm3n nostr:nprofile1qqswwmg86h9hzy0dq9gzecz2hre35p90w8djp2nqw5hf32tanl0n9pgpr9mhxue69uhhyetvv9ujumn0wd68ycmgv43kktndv5q3wamnwvaz7tmjv4kxz7fwva6kwem9wfhjummjvuvec5xx \n\nI put some extra love into this episode, it’s available on YouTube/Spotify for the video version and Fountain/everywhere else with audio. \n\nhttps://blossom.primal.net/259f334d2f657ffdde8debd2e607973d17294c4c98e75374599d296aef1818ca.mp4","created_at":1759428690,"id":"d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"a3ce52de3afba898c9635e57ede78cf12412f21b4e5d5edbe3b42dc10611eefba657fb521107743dd63b2a69f1af38914b915185370f914ae8f4ecc80a8a0c4e","tags":[["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"]]}] +[14:11:36.702] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#foodstr #Steakstr\nhttps://image.nostr.build/44c9311065821c3d3a86d87e23ccef5a2ff9696a1da25038a4df54e1bb79beee.jpg","created_at":1759428699,"id":"e7916103dd38103b80bd92102956432017d5a3286e9f97d2e1f7e5481d1c214c","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"c85dc53daef0f40118b1ba927d9a3e64b74a07c6a5345cea614485c39aea949eb239611b663fdf08423e1659aed8321223f66f4bf00af9e358934c4058136fd0","tags":[["alt","A short note: #foodstr #Steakstr\nhttps://image.nostr.build/44c93..."],["t","foodstr"],["t","Steakstr"],["t","steakstr"],["r","https://image.nostr.build/44c9311065821c3d3a86d87e23ccef5a2ff9696a1da25038a4df54e1bb79beee.jpg"],["imeta","url https://image.nostr.build/44c9311065821c3d3a86d87e23ccef5a2ff9696a1da25038a4df54e1bb79beee.jpg","x 05a31560113bf4373edb8f57b02e32f478667d2754ea052278c80d4aa72f4310","size 121330","m image/jpeg","dim 1064x1341","blurhash _:N]-5oz_Nof%Mi_RPsAj[kCf7WVjZayRjj[jZfQj@ayj[off6kCayjukCjuWVj[f6f6ayayj[bbj[j[ayj[j[ayj@ayazayayj[aybHj[j[f6ayW;fQkBa|azjZaybHay","ox 05a31560113bf4373edb8f57b02e32f478667d2754ea052278c80d4aa72f4310","alt "]]}] +[14:11:37.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I mean, it’s in the EU. What did you expect 😁","created_at":1759428697,"id":"b239bd543424109a9ad43adafe91ea44a9ee2fb9ada6d4e3612f26913cddeaa1","kind":1,"pubkey":"a60e79e0edad5100d7543b669e513dbc1c2170e8e9b74fdb8e971afd1e0e6813","sig":"7d5ada47141845efdd3d2eab2eb5c8f0d530dc2df02bfb06504f59d8f14f49ced8c82a19d4b463b67d24dfc3b1f1be4c01126734376ca7a354d7b036fe1f27bd","tags":[["e","afd16ea0213dd0f3d8e247aad0daa6b86ffe6458d256d84edfd82ae1971c2686","","root"],["e","5fa91b10f27d8d444ce612b8418755234cf312022ba80df8f81256e86b02f60c","wss://relay.primal.net","reply"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","","mention"],["p","f8cd8f48b4e535ab5b9bcffe64a8a3f047e10ec61607239737708849e6a4d9db","","mention"]]}] +[14:11:41.335] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"机コの字に繋げる給食","created_at":1759428701,"id":"406ddca69629a299487549d2dfefe0864a6520077b38c3f2b18a6bb4f7da4332","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"43438bf4312a99592e887626c2a08e17baeb08e20ad7e2a8a7754933f2991eaa3b7c06a5a65efbdc3524403265a48fd7ec7af898aa3d84473dd076407b98fc62","tags":[]}] +[14:11:42.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:11:47.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"あと自動ドアも、はー!とかやる","created_at":1759428707,"id":"c3ac83cd49b83bd09377c0b98a36d8f28c8405b274c996afb5e4e9ac49b70371","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"cb582919eee0e3ac34fd0493882e551608a24a0953006169ea1582c91ef5ce9de3cbac18bb16d943880386d3f01143a25962d550b11cfbbe736246d5664c8a68","tags":[]}] +[14:11:53.661] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:00.198] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"フォースがあるので","created_at":1759428720,"id":"a7740a68acf7b7eebb89fd6d9f5a9eace379c636b597fe648360ca311fa7fa69","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"b98cf313714149fd2cc967a66cf22309a03b02d1c5ba6311be2150515b8e7f1321039a7ea975cf17315f0972d327477857af15e54d9e4e4c0ad48c20a8c3f0c4","tags":[]}] +[14:12:08.734] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"@Scoresby's signal: CLINK Protocol Demo - MAY THE ₿ITCOIN #LIGHTNING STRIKE YOU! 𝚕𝚒𝚗𝚔: https://stacker.news/items/1245939/r/HODLR - #bitcoin #LN #askNostr","created_at":1759428727,"id":"ae98a12634719554d88e8dfeb1bbc87538f940719f9a80dba6e35c71db757cc4","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"a9f178de2807a9c86173547b3cae90bdd92c0c5273d30fdd041398787bed45ee45a4b695705ad1e4a1903c2f6e3b4b7438a484564a7c499c9455bda856e52b04","tags":[]}] +[14:12:08.905] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今後はジェダイって呼んでください","created_at":1759428728,"id":"0f24b7f8b0cb7d3d46f789ebd2f5966e565b07a1b68f50421cdaf84486373e7b","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"be424032e5b15efe2524f532f4736e6b5623be0020b0e81b1aa353c0500c230c3f54988df26cbf5ac548526b341055f393623d1e7a4ba67296ac29a5e6525823","tags":[]}] +[14:12:10.727] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:11.640] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:11.883] SEND relay.laantungir.net:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:11.883] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:11.982] RECV relay.laantungir.net:443: ["EOSE","pool_3_1759428731"] +[14:12:12.093] RECV nos.lol:443: ["EOSE","pool_3_1759428731"] +[14:12:13.704] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:15.819] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:18.708] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:20.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:26.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:27.297] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:28.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:31.156] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:31.640] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:32.796] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:32.797] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:32.797] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:32.949] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:33.009] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:33.070] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:33.130] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:33.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:33.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:33.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:33.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今後はジェダイって呼んでください","created_at":1759428728,"id":"0f24b7f8b0cb7d3d46f789ebd2f5966e565b07a1b68f50421cdaf84486373e7b","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"be424032e5b15efe2524f532f4736e6b5623be0020b0e81b1aa353c0500c230c3f54988df26cbf5ac548526b341055f393623d1e7a4ba67296ac29a5e6525823","tags":[]}] +[14:12:33.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"@Scoresby's signal: CLINK Protocol Demo - MAY THE ₿ITCOIN #LIGHTNING STRIKE YOU! 𝚕𝚒𝚗𝚔: https://stacker.news/items/1245939/r/HODLR - #bitcoin #LN #askNostr","created_at":1759428727,"id":"ae98a12634719554d88e8dfeb1bbc87538f940719f9a80dba6e35c71db757cc4","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"a9f178de2807a9c86173547b3cae90bdd92c0c5273d30fdd041398787bed45ee45a4b695705ad1e4a1903c2f6e3b4b7438a484564a7c499c9455bda856e52b04","tags":[]}] +[14:12:33.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"フォースがあるので","created_at":1759428720,"id":"a7740a68acf7b7eebb89fd6d9f5a9eace379c636b597fe648360ca311fa7fa69","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"b98cf313714149fd2cc967a66cf22309a03b02d1c5ba6311be2150515b8e7f1321039a7ea975cf17315f0972d327477857af15e54d9e4e4c0ad48c20a8c3f0c4","tags":[]}] +[14:12:33.554] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:33.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:33.675] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:33.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:33.796] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:33.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:33.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:33.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:34.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:34.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:34.159] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:34.521] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:35.004] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:36.162] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:36.162] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:36.162] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:36.314] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:36.324] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:36.385] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:36.445] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:36.508] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:36.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:36.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:36.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今後はジェダイって呼んでください","created_at":1759428728,"id":"0f24b7f8b0cb7d3d46f789ebd2f5966e565b07a1b68f50421cdaf84486373e7b","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"be424032e5b15efe2524f532f4736e6b5623be0020b0e81b1aa353c0500c230c3f54988df26cbf5ac548526b341055f393623d1e7a4ba67296ac29a5e6525823","tags":[]}] +[14:12:36.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"@Scoresby's signal: CLINK Protocol Demo - MAY THE ₿ITCOIN #LIGHTNING STRIKE YOU! 𝚕𝚒𝚗𝚔: https://stacker.news/items/1245939/r/HODLR - #bitcoin #LN #askNostr","created_at":1759428727,"id":"ae98a12634719554d88e8dfeb1bbc87538f940719f9a80dba6e35c71db757cc4","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"a9f178de2807a9c86173547b3cae90bdd92c0c5273d30fdd041398787bed45ee45a4b695705ad1e4a1903c2f6e3b4b7438a484564a7c499c9455bda856e52b04","tags":[]}] +[14:12:36.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"フォースがあるので","created_at":1759428720,"id":"a7740a68acf7b7eebb89fd6d9f5a9eace379c636b597fe648360ca311fa7fa69","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"b98cf313714149fd2cc967a66cf22309a03b02d1c5ba6311be2150515b8e7f1321039a7ea975cf17315f0972d327477857af15e54d9e4e4c0ad48c20a8c3f0c4","tags":[]}] +[14:12:36.871] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:36.955] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:37.016] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.076] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.137] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:37.258] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:37.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.379] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:37.500] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:37.862] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:38.345] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:39.501] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:39.501] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:39.501] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:39.653] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:39.713] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:39.774] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:39.834] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:39.895] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:39.955] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:40.016] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:40.076] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今後はジェダイって呼んでください","created_at":1759428728,"id":"0f24b7f8b0cb7d3d46f789ebd2f5966e565b07a1b68f50421cdaf84486373e7b","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"be424032e5b15efe2524f532f4736e6b5623be0020b0e81b1aa353c0500c230c3f54988df26cbf5ac548526b341055f393623d1e7a4ba67296ac29a5e6525823","tags":[]}] +[14:12:40.137] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"@Scoresby's signal: CLINK Protocol Demo - MAY THE ₿ITCOIN #LIGHTNING STRIKE YOU! 𝚕𝚒𝚗𝚔: https://stacker.news/items/1245939/r/HODLR - #bitcoin #LN #askNostr","created_at":1759428727,"id":"ae98a12634719554d88e8dfeb1bbc87538f940719f9a80dba6e35c71db757cc4","kind":1,"pubkey":"c239c0f994c471c9a1e0d22b14255d956923cfbc7ce7aac653aceb2bfa4a5015","sig":"a9f178de2807a9c86173547b3cae90bdd92c0c5273d30fdd041398787bed45ee45a4b695705ad1e4a1903c2f6e3b4b7438a484564a7c499c9455bda856e52b04","tags":[]}] +[14:12:40.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"フォースがあるので","created_at":1759428720,"id":"a7740a68acf7b7eebb89fd6d9f5a9eace379c636b597fe648360ca311fa7fa69","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"b98cf313714149fd2cc967a66cf22309a03b02d1c5ba6311be2150515b8e7f1321039a7ea975cf17315f0972d327477857af15e54d9e4e4c0ad48c20a8c3f0c4","tags":[]}] +[14:12:40.258] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:40.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:40.379] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.500] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.561] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:40.621] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:40.682] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.742] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.803] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:40.863] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:41.191] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:41.674] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:43.026] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:43.026] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:43.026] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:43.177] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:43.238] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:43.299] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:43.359] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:43.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:43.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:43.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:43.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:43.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:43.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:43.783] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:43.843] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:43.904] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:43.964] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.025] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:44.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:44.207] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.267] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.328] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:44.388] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:44.750] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:45.233] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:46.391] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:46.391] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:46.391] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:46.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:46.554] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:46.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:46.675] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:46.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:46.796] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:46.856] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:46.917] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:46.977] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:47.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:47.098] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:47.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:47.219] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.340] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.401] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:47.461] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:47.522] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.582] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.643] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:47.703] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:48.066] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:48.549] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:49.703] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:49.704] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:49.704] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:50.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:50.096] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:50.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:50.217] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:50.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:50.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:50.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:50.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:50.520] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:50.581] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:50.641] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:50.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:50.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:50.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:50.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:50.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:51.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:51.066] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:51.091] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:51.151] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:51.212] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:51.575] RECV nos.lol:443: aef90819dee4f999c8887e0796efe7efe1b326d0c9596692e37 +[14:12:52.057] RECV nos.lol:443: 04"],["p","472f440f29ef996e92a186b8d320ff180c85590 +[14:12:53.212] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:53.213] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:53.213] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:53.364] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:53.425] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:53.485] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:53.546] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:53.606] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:53.667] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:53.727] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:53.788] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:53.848] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:53.909] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"the wall keeps you tax slaves in as well as keeping them out ","created_at":1759428729,"id":"992c1a1658ad48b8616a9453d27d7225db74d652818c2be5c2e513517ca03f02","kind":1,"pubkey":"2755b492fbb0ffa5c327819a4699c7001341b9f7826a8367273549f1a58a4831","sig":"bb66c3174e6c22e1cdf625f43b09276bb8884f64bea003ab1b4ad29edb4b491bf27ce78db948b1942c8ad85de116598d7fb78ff27e0ad4630a12d2c8f15d159e","tags":[["e","a56372e4d568e3c85bb9507b1e09db0684e8b68b5cbab3001909d9382ae390ff","","root"],["p","d163c3686187605ab3a9fc87da299356364b77157cb66b1bc1a72d1ec6788eda"]]}] +[14:12:53.969] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:54.030] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:54.090] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.151] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.211] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.272] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:54.332] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:54.393] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.453] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.514] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:54.575] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:54.816] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"f8c6d9e8dcfcc8ad +[14:12:55.299] RECV nos.lol:443: 5"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae +[14:12:56.090] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:56.090] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:56.090] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:56.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:12:56.252] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:56.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:56.373] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:56.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:56.494] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:56.554] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:56.615] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:56.675] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:56.736] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me too.\n\nEspecially #trainhopping videos like George's. \n\nhttps://www.youtube.com/@Jumpingoffthecliff \n\n","created_at":1759428731,"id":"dcb7808084e0dfa4f7a3e8a54dbdd08bb1475fc9507cba9adb3bc2599dfd43d8","kind":1,"pubkey":"386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9","sig":"f171f80fb6956e2a998cb4b8af6b5e69b9986201d7bc50ba47328118d8317e8abeb76d20a0c34532248d769bc6553814ac1baec271b2a860644dbd5dfc07cd1d","tags":[["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb","wss://adre.su/","mention"],["p","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["p","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","ed6a622d1638ffa4fb43e900dcfc71c178e70cd4080a822cfb0f77dd3d51ceb8","","reply","c3ae4ad8e06a91c200475d69ca90440d6d54de729d3d1e5afacfbdb6e54d46cb"],["e","c9b97c7e5561d0a7f0ae575b7d891a477bb1563157b9db53dd961cbf5a0dd4a5","","root","386058f50fb3ab679f9bcae74d731dea693874688d3064a504ef5f0fd5cdecb9"],["t","trainhopping"]]}] +[14:12:56.796] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:56.857] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:56.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:56.978] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.099] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:12:57.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:12:57.220] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.281] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.341] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:12:57.402] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:12:57.644] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"f8c6d9e8dcfcc8ad +[14:12:58.127] RECV nos.lol:443: 5"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae +[14:12:59.113] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:12:59.113] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:12:59.113] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:12:59.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:12:59.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:12:59.387] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:59.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:12:59.508] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:12:59.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:12:59.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:12:59.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:12:59.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:12:59.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amanhã no Don't Trust, Verify temos uma convidada muito especial, Joana Amaral Dias. E também o sorteio da #LotoMaxi #Bitcoin!\nO painel de sempre: nostr:npub1g34z7c83lerj08k6xf3xjygy3dd5dh6tpcdsmd6l875tp94tujqqdw6zjw, nostr:npub160u5kdf4g2nr993qvteuj9rr35x7awny4u0esrvnjplwrvlq6nus90as4t e nostr:npub103wzz5eeegcwzrchje02m4rcxqxqtz2rauefhdshmtzd9xjxxdnqm5kd9u.\n22h🇵🇹/18h🇧🇷\nhttps://www.youtube.com/watch?v=hh5yrgSJXI4","created_at":1759428732,"id":"e82f403e592933f12991d2d8cd4f76f5c646ee479c5450db50f5d86bbcbb9894","kind":1,"pubkey":"ff596f3bb07f7f568df80a8839b72db2088e1f5fe91236ade56a216c8dcc5ff6","sig":"88c8bae6ddfa04ab33ea86afb3a77ffec4309a12e82941edaa83609e5698c0a0ae26b5d5b6ef299e670e2efd9ec57a64bc878b9d353bfa09d3c96dde6f934432","tags":[["t","LotoMaxi"],["t","Bitcoin"],["p","446a2f60f1fe47279eda32626911048b5b46df4b0e1b0db75f3fa8b096abe480","","mention"],["p","d3f94b353542a632962062f3c914638d0deeba64af1f980d93907ee1b3e0d4f9","","mention"],["p","7c5c215339ca30e10f17965eadd478300c058943ef329bb617dac4d29a463366","","mention"],["r","wss://nostr.wine/"],["r","wss://eden.nostr.land/"],["r","wss://nos.lol/"],["r","wss://relay.damus.io/"],["r","wss://relay.primal.net/"]]}] +[14:12:59.871] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:12:59.931] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:12:59.992] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.052] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.113] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.173] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:00.234] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:00.295] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.355] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.415] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:00.476] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:00.718] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"107e74c9bf79b39d +[14:13:01.514] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:01.514] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:01.514] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:01.666] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:01.676] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:01.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:01.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:01.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:01.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:13:01.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:02.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:13:02.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:13:02.161] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:13:02.222] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:02.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:02.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.524] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:02.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:02.645] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:02.827] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:03.069] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"107e74c9bf79b39d +[14:13:03.861] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:03.861] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:03.862] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:04.014] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:04.074] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:04.135] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:04.195] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:04.256] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:04.316] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:13:04.377] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:04.438] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Shawarma\n\nIngredients:\n1 kg Chicken Thighs\n1 tbs Coriander\n1 tbs Cumin\n1 tbs Cardamom\n1 tsp Cayenne Pepper\n2 tsp Paprika\n2 tbs Lemon Juice\n3 tbs Olive Oil\n1 cup Greek Yogurt\n1 Garlic Clove\n1 tsp Cumin\nSplash Lemon Juice\nSliced Lettuce\nSliced Tomato\n6 Pita Bread\n\nInstructions:\nCombine the marinade ingredients in a large ziplock bag (or bowl).\r\n\nAdd the chicken and use your hands to make sure each piece is coated. If using a ziplock bag, I find it convenient to close the bag then massage the bag to disperse the rub all over each chicken piece.\r\n\nMarinate overnight or up to 24 hours.\r\n\nCombine the Yoghurt Sauce ingredients in a bowl and mix. Cover and put in the fridge until required (it will last for 3 days in the fridge).\r\n\nHeat grill/BBQ (or large heavy based pan on stove) on medium high. You should not need to oil it because the marinade has oil in it and also thigh fillets have fat. But if you are worried then oil your hotplate/grill. (See notes for baking)\r\n\nPlace chicken on the grill and cook the first side for 4 to 5 minutes until nicely charred, then turn and cook the other side for 3 to 4 minutes (the 2nd side takes less time).\r\n\nRemove chicken from the grill and cover loosely with foil. Set aside to rest for 5 minutes.\r\n\nTO SERVE\r\n\nSlice chicken and pile onto platter alongside flatbreads, Salad and the Yoghurt Sauce.\r\n\nTo make a wrap, get a piece of flatbread and smear with Yoghurt Sauce. Top with a bit of lettuce and tomato and Chicken Shawarma. Roll up and enjoy!\n\nImage: https://www.themealdb.com/images/media/meals/kcv6hj1598733479.jpg Audio Instructions: https://cdn.satellite.earth/7b8d367da8ac0c0328ce5ac1f6e23d15b906fb9ce8d644352dcd63d773fa5c7d.mp3","created_at":1759428747,"id":"ae1e72e6eacd761a27f644a85a4f65eaf9146e0ac7b67258dbbb3be0d641df3e","kind":1,"pubkey":"4fdb1e1123ea6cef3a9e8118ce278848d6870b1de1df5ed10154e586544d7068","sig":"8212b9258f3cd130c80a7ad274b8fe6efb4b3944a26a177362805668d1e35aafed2aaf6337f49236272e2cdfe3bbb251eb2db9ca4f35d0a22e02a8d43da496a9","tags":[]}] +[14:13:04.498] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足のお菓子交換","created_at":1759428739,"id":"d2bbfef6f4f542721b93f10b2cb7522508d0ee98608d0e0e2cdb7b0527a5af23","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ee23ef027b8c91ecf13fb6c36957c890878b1388471cca85fd2d9e14b4dcdfae6c599808d14189b8da4604d589a6637bc4d3079e8aba1aa04143de3fca658e36","tags":[]}] +[14:13:04.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I do condone piracy. Everyone should do it if capable.","created_at":1759428737,"id":"cd27d54172cf08f622a190cac926839b7fe3ed9b0e050fe940a40e1b95f4a8d5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"c921fc7ab7a1260350c4e0f2abc85cc2d85086e33d7543c16cf2b6043301d260b32cf8285d54d9ea942b560c63c63b2d3b42303f3890b651b9cadd37a51447d2","tags":[["alt","A short note: I do condone piracy. Everyone should do it if capa..."],["e","eefe745b5d5e3812450b3a5e591ba2d3607ae87a25bc2fd49866f6595e876438","wss://relay.mostr.pub/","root","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","9ca0bd7450742d6a20319c0e3d4c679c9e046a9dc70e8ef55c2905e24052340b","wss://nostr.wine/"],["p","c0f38c1b0c2f4c8339cc37e4be09e9d94a288a17c35e67bd17608155e5ece439","wss://relay.mostr.pub/"]]}] +[14:13:04.619] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:04.680] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:04.741] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:04.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:04.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:04.922] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:04.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:05.043] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:05.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:05.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:05.225] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:05.466] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"f9df35008d6cbedd +[14:13:05.527] RECV nos.lol:443: f05dbfc4c8200039685f5da6027473862fd8a67b5b1fe314fdbb19b +[14:13:05.889] RECV nos.lol:443: fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p", +[14:13:06.156] RECV nos.lol:443: 97c8397f26c0e6d61e5acffc7a98"],["p","020f2d21ae09bf3 +[14:13:06.640] RECV nos.lol:443: 6"],["p","8967f290cc7749fd3d232fb7110c05db746a31 +[14:13:06.942] RECV nos.lol:443: 08756ab4f0f3007b04d7e699f45eac3ab696077296219d207 +[14:13:07.183] RECV nos.lol:443: c2327691b3"],["p","5e7ae588d7d11eac4c25906e6da807e +[14:13:07.847] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","3bf0c63fcb93463407af97a5e5ee64fa883d107ef9e558472c4eb9aaaefa459d"],[" +[14:13:08.512] RECV nos.lol:443: 810f86dd09e18bfd76aabc24a0081ce2856f330504ed"],["p","f +[14:13:08.572] RECV nos.lol:443: 84bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae5801 +[14:13:09.559] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:09.559] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:09.559] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:09.780] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:09.841] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:09.901] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:09.962] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:10.022] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:10.083] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:10.143] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:10.204] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:10.264] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:13:10.325] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Chef and Cleaner](http://btcjobs.bitvocation.com/u83Bq)\n\nCompany: BitDeer\nDepartment: Trades\n\nDev: No\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Ethiopia\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428750,"id":"a65e53a8c712fa49740d7e14fdaa3db2d904dfc1d72c3864e9f1547dc1899898","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"69600bdeef067b3281b857e9e9131ef330e8da746e9a79225107d280e70865905ab0da8b7509073e43786bf232912f4f19f08bbfa068278583efbdbb8f642e4f","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:10.385] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:10.446] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:10.507] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.567] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.628] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.688] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:10.749] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:10.809] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.870] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.930] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:10.991] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:11.198] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"7dab96110a19136a +[14:13:11.923] RECV nos.lol:443: 1c3e"],["p","e88a691e98d9987c964521dff60025f60700378a487 +[14:13:11.983] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","472 +[14:13:14.073] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:14.074] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:14.074] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:14.295] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:14.356] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:14.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:14.477] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:14.537] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:14.598] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:14.659] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:14.719] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:14.780] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:14.840] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"んずは日本のジェダイ[1,2,4]。 - Wikipedia","created_at":1759428760,"id":"6bd8d777ae0d600b7d4904505a9d7450e901ce7e3657c4fe08c62ab1eb1363f6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba346b72d71f3ed599887ca8e0aca014eb48d56cbb1b32ccbf20459600b256076be3e1f7597500d19ad7992a84b141341d76c8b80507d3b8cc6096f711e64d55","tags":[]}] +[14:13:14.901] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:14.961] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:15.022] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.143] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.203] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:15.264] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:15.324] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.385] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.445] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:15.506] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:15.748] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"5c716695811dbb06 +[14:13:16.317] RECV nos.lol:443: 0fceaf1cae8722084332ed1e32496291d42"],["p","a341f45ff9758f570a21b000c17d4e53a3a497c8397f26c0e6d61e5a +[14:13:16.559] RECV nos.lol:443: e3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d3 +[14:13:17.957] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:17.957] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:17.958] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:18.290] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:18.351] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:18.411] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:18.471] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:18.532] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:18.592] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:18.653] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:18.713] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:18.774] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟠 [Rust Backend Developer for BRAIINS MANAGER ](http://btcjobs.bitvocation.com/dmGLf)\n\nCompany: Braiins\nDepartment: Engineering\n\nDev: Yes\nEmployment Type: Unknown\nSalary: Unknown\n\nWork Environment: Hybrid / On-site\nCity: Unknown\nCountry: Unknown\n\n#jobstr #jobs #bitcoin #bitvocation","created_at":1759428761,"id":"6362a9ade49c6f58408729164c6eebdd72e000397e3815d6dc3a4509b84a40f7","kind":1,"pubkey":"096c0beaac04ac872a68b32106bfec6218ee39386f9e750daefbfbd1189305aa","sig":"2a54619fbb6123d1ef04e74b943cef5c71575c047742067b95bff9b35f17daa0a4bc1c576334b32208acfcb47908121ab89bf04a9a88ce6ce8edc4387c9e9b52","tags":[["t","jobstr"],["t","jobs"],["t","bitcoin"],["t","bitvocation"]]}] +[14:13:18.834] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqsvsq709m00dddy60mfrla68fc5p7skk3u9uznw7xfygz3dlr8j5ustkhx5f","created_at":1759428761,"id":"d50c904c329620eea88bd21fe9c81652683fe8c094dc3f8ccd65d00da2c31ae5","kind":1,"pubkey":"fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e","sig":"808b332e0cad7cf9dc6bdee1acf9c641576f93761c2af64b51acd457daf1baeb2c187b546513b63ea93f3e60e3d93f5685be4af6ac49a21e30f029ad04b47e4b","tags":[["e","c803cf2edef6b5a4d3f691ffba3a7140fa16b4785e0a6ef192440a2df8cf2a72","","mention"],["e","639fd49562a8cf313d297d411c2d38cc190ca295aeec37b6ba27d6b62e1cc655","wss://nostr.oxtr.dev","root"],["e","829acc8a6dcd2962fdce1f3bffdd21c954f8836e1129143e874ad0fb96dffda2","wss://nostr.oxtr.dev","reply"],["p","fcf70a45cfa817eaa813b9ba8a375d713d3169f4a27f3dcac3d49112df67d37e"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b","","mention"],["p","b671197df527295c7cc4d195c359d0dd95f001d25df607eaccb61a6a4a0c197d"]]}] +[14:13:18.895] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:18.956] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:19.016] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.137] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:19.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:19.319] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.379] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.440] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:19.501] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:19.743] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:19.803] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:19.924] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:21.334] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:21.335] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:21.335] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:21.486] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:21.496] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:21.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:21.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:21.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:21.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:21.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:21.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:21.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:21.981] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:22.041] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:22.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:22.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:22.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:22.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.526] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:22.647] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:22.889] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:22.950] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:23.071] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:24.288] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:24.288] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:24.288] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:24.439] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:24.500] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:24.560] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:24.621] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:24.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:24.742] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:24.802] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:24.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:24.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:24.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4\n#Anisyia #Model #Pornstar\n","created_at":1759428774,"id":"10db2c5c35e14bfb234bc3915e3de2e148c0e6ccf43593866b3337dd4736df2f","kind":1,"pubkey":"c231760b10cefbfc3d7bae5e2d5b40e2ee1714ff90cb78fcff40ba82122dd2be","sig":"2591bf35ce7c4127dd2921b212e6ccf2eb2b5c379bc0084ffa3615726861361eec37fc72c16ab7904fd33f636c4e8b93c98fcb6ff94510855b6c3de1bf5294f2","tags":[["alt","A short note: 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 https://cdn.nostrcheck...."],["t","Anisyia"],["t","anisyia"],["t","Model"],["t","model"],["t","Pornstar"],["t","pornstar"],["r","https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4"],["imeta","url https://cdn.nostrcheck.me/e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214.mp4","x d8e159578b00bfc56050bca32a9fc16a7f8d5c10abaaf0fabae65fe50c3f0c28","size 30606","m video/mp4","dim 650x650","blurhash UQP5NZ%W~CbDrgR%xaxa?HNFNG$+E1xas:NG","ox e166f663f24f38962da79506586394db65003deb7e65ffe03713ff4dcfd99214","alt ","content-warning "]]}] +[14:13:25.044] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:25.105] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:25.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.226] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:25.408] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:25.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:25.650] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:25.891] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:25.952] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:26.072] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:27.256] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:27.256] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:27.256] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:27.562] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:27.622] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:27.683] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:27.743] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:27.804] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:27.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:27.925] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:27.985] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:28.046] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:28.106] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:28.167] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:28.228] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:28.288] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.349] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.409] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.470] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:28.530] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:28.591] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.651] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.712] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:28.773] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:29.014] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:29.075] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:29.196] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:30.414] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:30.414] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:30.414] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:30.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:30.627] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:30.687] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:30.748] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:30.808] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:30.869] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:30.929] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:30.990] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:31.050] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:31.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:31.136] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:31.197] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:31.258] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.378] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:31.500] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:31.560] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.621] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.681] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:31.742] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:32.016] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:32.076] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:32.197] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:33.411] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:33.411] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:33.411] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:33.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:33.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:33.688] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:33.749] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:33.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:33.870] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:33.896] SEND relay.laantungir.net:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:33.896] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:33.931] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:33.972] RECV relay.laantungir.net:443: ["EOSE","pool_4_1759428813"] +[14:13:33.973] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:34.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:34.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:34.154] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:34.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:34.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:34.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:34.578] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:34.760] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:35.002] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:35.063] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:35.184] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:36.441] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:36.441] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:36.441] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:36.441] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:36.593] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:36.604] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:36.664] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:36.725] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:36.785] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:36.846] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:36.906] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"run your banks, people ","created_at":1759428788,"id":"57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","kind":1,"pubkey":"ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","sig":"80e90ab4fa66c200147435bc39eec940d4667533d0b61d6066528935639166dcd9cab28937b906a15f5645d2e26ca53a547809806b0933ee9fbee38b1c65ce06","tags":[["alt","A short note: run your banks, people "]]}] +[14:13:36.967] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The point of follow packs is to recommend follows to other people. There are lists that can support encrypted entries. listr.lol is a bit buggy, but currently the only way I know of to create such lists.\n\nOf course, the only client I know of that supports displaying a feed from those you have on a private list is Amethyst, and it required at least one entry on the list to be public last time I tried it.\n\nThere might be others, but Amethyst is the only one I know about for certain.","created_at":1759428783,"id":"68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","kind":1,"pubkey":"b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","sig":"a6956ba2606bd1ad2c1385306757bbfe05280970fa0b90e982d72ab71d60560135fde1f8de0f41456f7f7572e25f95b477f6c66bfa6f04aedec23f4d8c8a6635","tags":[["alt","A short note: The point of follow packs is to recommend follows ..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://theforest.nostr1.com/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["r","https://listr.lol/"]]}] +[14:13:37.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can we get you in a more comfortable position? I am notorious for taking my time with my meals ¯⁠\\⁠_⁠(⁠ツ⁠)⁠_⁠/⁠¯","created_at":1759428780,"id":"d622e065510f05bfd3552a30fe9cd0cfc77312770132a59216a4a8d58a7dac02","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"ab7406591d49ffc828d7f1ca2394b463999c17c87c9ebf929c25573c49bb9a1e1c14319a34e184b199415a313a1c84258040d7640714a9d026c31f776ab88c93","tags":[["alt","A short note: Can we get you in a more comfortable position? I a..."],["e","051bc4df49ef473af0f230f17d48aa3d9506c28c154a32dc622d413ae1cc32e0","wss://nos.lol/","root","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","03374734fbb34ea33c5222614088c907c15e0c675f3e62ac4e3a2a865aefdc44","wss://relay.damus.io/"]]}] +[14:13:37.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1qqsthkthvqjfwg9hd96tc2p9plzn4ls8aexdf92cgpumu6jvpvldy9spz9mhxue69uhkummnw3ezuamfdejj7q3qwm7wcrsx8q6378gwphzwhtmd60t8gpqjd4ny23m8gpc0x96jw0vsxpqqqqqqz8hw4fj","created_at":1759428777,"id":"b695dafcd0c177741f4704581a25d7ad78162d179d0293dbc6fe924bb828e7aa","kind":1,"pubkey":"a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","sig":"63b979da6afc816b57cac0cc89d7e44bbfb047f1365f57f5012eb072a2c196fd7866142d18faa727ae82386b79a236a033d0c087a73b23c8e18c2d5133810842","tags":[["alt","A short note: The Goat Milk Queen - VIDEO OUT NOW\n\nnostr:nevent1..."],["p","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/"],["q","bbd97760249720b76974bc28250fc53afe07ee4cd495584079be6a4c0b3ed216","wss://nostr.wine/","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9"],["zap","76fcec0e0638351f1d0e0dc4ebaf6dd3d67404126d664547674070f3175273d9","wss://wons.calva.dev/","0.79"],["zap","a37118a4888e02d28e8767c08caaf73b49abdac391ad7ff18a304891e416dc33","wss://nos.lol/","0.21"]]}] +[14:13:37.149] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:37.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.270] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:37.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.391] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.452] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.513] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:37.573] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:37.634] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.694] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.755] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DIE ZEIT\",\"about\":\"Nachrichten, Hintergründe und Debatten\\n\\nFolgen, um Beiträge aus dem offiziellen DIE ZEIT Flipboard-Profil zu sehen.\",\"picture\":\"https://cdn.flipboard.com/uploads/avatar/5e51da7be185ce61c31d2bdbfde6bafd1b9d3909.jpeg\",\"nip05\":\"ZEITONLINE@flipboard-com.mostr.pub\",\"fields\":[]}","created_at":1759428641,"id":"778e3d588db9fd31dbe6b9c00e6d22772a8450caab4f4406f5858118ebbfc2c6","kind":0,"pubkey":"aa874e97518453d003c08186bb13e8ecdd43b154be37c230ccfdccdb665e08e8","sig":"08c0872369696e97cc4f602fa260cc724fde2a688a1f5c96a6730f8e72e37311976c15745f7adf92600f7321e5d45bcafa5ebe50584b1d0160b2596ee7e8b25e","tags":[["proxy","https://flipboard.com/users/ZEITONLINE","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:37.815] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:38.057] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:38.117] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:38.238] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:39.456] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:39.456] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:39.456] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:39.456] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:39.608] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:39.669] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:39.730] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:39.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:39.852] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:39.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:39.973] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:40.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:40.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:40.155] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:40.215] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:40.276] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.397] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:40.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:40.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:40.760] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":troll_pumpkin: Pumpkinigger\",\"about\":\"SUI is meant for educational purposes only. Any resemblance to real persons, living or dead is purley coincidental. Void where prohibited. Some assembly required. List each check separately by bank number. Batteries not included. Contents may settle during shipment. Use only as directed. No other warranty expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. This is not an offer to sell securities. Apply only to affected area. May be too intense for some viewers. Do not stamp. For recreational use only. Do not disturb. All models over 18 years of age. If condition persists, consult your physician. No user-serviceable parts inside. Freshest if eaten before date on carton. Subject to change without notice. Times approximate. No postage necessary if mailed in the United States. Breaking seal constitutes acceptance of agreement. For off-road use only. As seen on TV. One size fits all. May cause diarrhea. Colors may fade. Slippery when wet. For office use only. Not affiliated with the American Red Cross. Edited for television. Keep cool; process promptly. Post office will not deliver without postage. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. At participating locations only. Not the Beatles. Penalty for private use. See label for sequence. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Lost ticket pays maximum rate. Your cancelled check is your recipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Limited time offer, call now to insure prompt delivery. You must be present to win. No passes accepted for this engagement. No purchase necessary. Processed at location stamped in code at top of carton. Shading within a garment may occur. Use only in well-ventilated area. Keep away from fire or flame. Replace with same type. Approved for veterans. Booths for two or more. Check here if tax deductible. Some equipment shown is optional. Price does not include taxes. No Canadian coins. Not recommended for children. Prerecorded for this time zone. Reproduction strictly prohibited. No solicitors. No alcohol, dogs, or horses. No anchovies unless otherwise specified. Restaurant package, not for resale. List at least two alternate dates. First pull up, then pull down. Call toll free before digging. Driver does not carry cash. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. This supersedes all previous notices.\\n\\nIf you experience any problems with SUI, contact Frank in legal.\",\"picture\":\"https://decayable.ink/media/4a5e74411282a4a1225a24f8bc9b83e779017e6c89bd89b580f0686852e03e8a.png\",\"banner\":\"https://decayable.ink/media/d29798b5fe5ea5f5c6b3a163b33b69b362f4c0f9b670caef1514197543df6b5e.gif\",\"nip05\":\"Sui@decayable-ink.mostr.pub\",\"fields\":[]}","created_at":1759428659,"id":"b323ee75a0e91d9b609d6bc38443c1c42f59acf6de72c869f12017c11ca6b039","kind":0,"pubkey":"35bc40cb5ee9acd91291aab42dfaf32e3e4e0317af11b577809b3b1c7152a8ef","sig":"da548b21331af65d48c651ff84149e0c2ab634649ce7fd914b80643234170c66b5b7604b4977e387cf51d456a0acb984a602cd6a9d8b8f7591f82d3391345020","tags":[["emoji","troll_pumpkin","https://decayable.ink/emoji/DecayableInk/troll_pumpkin.png"],["proxy","https://decayable.ink/users/Sui","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:40.881] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:41.089] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:41.149] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:41.270] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:42.487] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:42.487] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:42.487] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:42.487] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:42.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:42.700] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:42.760] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:42.821] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:42.881] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:42.942] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:43.002] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:43.062] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:43.123] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:43.183] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"理研一般公開","created_at":1759428788,"id":"936b8a5db68ace053601ed0130f93617170d38919c1f4659a9f61303279d1659","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"d66c3099e83be13a4c655ff51b7621742f93e09523f536519939b3ab43966e99ea11243c01ce9e6b2ced5816e9aa3d82b73ce992a149e2170fc34d3453882d44","tags":[]}] +[14:13:43.244] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:43.304] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.426] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.486] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:43.547] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.607] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.668] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.728] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:43.789] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:43.849] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:43.910] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:44.151] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:44.212] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:44.333] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:45.592] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:45.592] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:45.592] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:45.592] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:46.051] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:46.112] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:46.138] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:46.198] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:46.258] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:46.319] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:46.379] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:46.440] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:46.500] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:46.561] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"とうとうおれさまもWikiに載る時代が来たか","created_at":1759428789,"id":"d28db1b4263113c3279df38485f3e6d1a21cb1bda8c572a25b46a999a3c8ed70","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"eb2fde4c006571bd8807324ce849faa39da180dc1579d37e08530e9b58ea5d7800ae25828bf0a5d261d67ac80fb4e97dfb0b991a1b35c47a0b413a4529636033","tags":[]}] +[14:13:46.621] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:46.682] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:46.742] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:46.803] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:46.864] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:46.924] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:46.985] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:47.046] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:47.106] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:47.167] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:47.227] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:47.288] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:47.530] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:47.590] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:47.711] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:48.928] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:48.929] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:48.929] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:48.929] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:49.081] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:13:49.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:49.202] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:49.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:49.323] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:49.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:49.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:49.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:49.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:49.626] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"遠足の前の日に駄菓子屋いって英雄になるやつ","created_at":1759428795,"id":"4a62ac867bf3e993043739c946f4a9acc741f13b933b433c100e80f8aacb66e6","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"e6b5248b4c696df46281f8d520f63e7781d4c85a0adce363bc8204ce1ddef9b52d2cf193a56e850f88db45232a79a917e0fbb17fd4006576c71447bfe186de69","tags":[]}] +[14:13:49.686] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:49.747] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:49.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:49.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:49.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:49.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:50.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:50.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:50.171] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:50.231] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:50.292] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:50.352] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:50.594] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:50.655] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:50.776] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:51.957] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:51.957] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:51.958] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:51.958] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:52.110] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:13:52.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:13:52.231] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:52.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:52.352] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:52.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:52.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:52.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:52.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:52.654] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\nKalau banyak anak muda ga paham atau mau tau soal politik, apakah masih bisa disebut \"maju\"?\n\nkalaupun kita bisa sebut \"maju\", mungkin itu hanya merujuk pada beberapa sektor.\n\nsecara ekonomi?\n\njangan lihat saham atau pendapatan negaranya.\n\ncoba tanya sama warga.\n\nJepang itu lagi sakit.","created_at":1759428799,"id":"8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"441f40e0098b820ef2bb5c45acc3a54d5d58f29a5a2c36fd887e25d322f3df3c5f6b97f7667e3e4ac9dbfff6801e56ed9e0fcebb5a299ae1d5bfb6fb146e64ea","tags":[["alt","A short note: Yonle:\ntoh.\n\n\"Jepang itu negara maju\" kan?\n\nkan?\n\n..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:13:52.715] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:52.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:52.836] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:52.896] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:52.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:53.017] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:53.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:53.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:53.199] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:53.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:53.319] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:53.380] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:53.622] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:53.682] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:53.803] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:55.019] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:55.020] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:55.020] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:55.020] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:55.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:13:55.302] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:13:55.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:13:55.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:55.483] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:55.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:55.604] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:55.665] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:55.725] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:55.786] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:55.846] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:55.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:55.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.028] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:56.114] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.175] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.235] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.296] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:56.356] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:56.416] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:56.477] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:13:56.719] RECV nos.lol:443: 26c0957377e8d866c7776f417c0f2f","sig":"26476c1dba898438 +[14:13:56.779] RECV nos.lol:443: 3fd9251102ae8f073b94e24aac0ac4b09cc6e841743a5b967ee07070 +[14:13:56.900] RECV nos.lol:443: s":[["p","6e1534f56fc9e937e06237c8ba4b5662bcacc4e1a3cfab9c16d89390bec4fca3"],["p","82341f882b6eabcd2ba7 +[14:13:58.121] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:13:58.121] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:13:58.121] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:13:58.121] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:13:58.273] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:13:58.333] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:13:58.394] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:13:58.454] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:13:58.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:13:58.575] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:13:58.636] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:13:58.697] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:13:58.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:13:58.818] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Who is the chief #zapathon officer of #Nostr?? ⚡️ \n\n#asknostr \nhttps://media.tenor.com/5XJZShYpv-EAAAAM/simpsons-zzzap.gif","created_at":1759428799,"id":"b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","kind":1,"pubkey":"7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","sig":"ba3bfa6946835c791e8f055b80c4a2ab1862845046579a70693e46e12f210da695e7112980e106d6a8d075a8dd862113de4b6ce5e9b1fe3538ca1376d062f38c","tags":[["t","zapathon"],["t","Nostr"],["t","asknostr"]]}] +[14:13:58.878] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:13:58.939] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.000] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.060] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.121] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:13:59.181] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.242] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.302] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.363] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:13:59.423] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:13:59.484] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:13:59.545] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:02.411] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:02.412] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:02.412] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:02.412] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:02.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:02.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:02.634] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:02.695] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:02.755] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:02.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:02.906] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:02.967] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:03.027] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:03.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"With Cognac! \n\nIt would be an interesting combination.\n\nPrepare the steak with peppercorns?","created_at":1759428809,"id":"2d7ccf0c1bf79478d380955d7fc676efc0848fedd6074000a0c20f5f2c219f80","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"94239c399461a38d6ac76186aaa3897c79e3205da8e1f9cc351fc039ecc8028c6a8bdee5cb1fa8d556c09e3397cf4ab5d16be57667e1c735b404256c1cde5f78","tags":[["alt","A short note: With Cognac! \n\nIt would be an interesting combinat..."],["e","889d443831fc67807ddd0bd0bbc80e59a6c2f1609d94eacc45e1203964424a48","wss://relay.damus.io/","root","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","67175022f894cd451ac9e374176b569df847df78f2cfbd4b2b9029c450cc7354","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","7c6fedf4c6057648e926b517cb9b7f2d2ef6cbcaaec81b4492fe7b0b2157b1ae","wss://relay.damus.io/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:14:03.148] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:03.209] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.270] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.330] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.391] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:03.451] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.511] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.572] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.632] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:03.693] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:03.754] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:03.814] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:05.512] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:05.512] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:05.513] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:05.513] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:05.664] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:05.725] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:05.785] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:05.846] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:05.906] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:05.967] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:06.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:06.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:06.149] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:06.209] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:06.270] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:06.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.391] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.452] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.512] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:06.573] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.633] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.694] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.754] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:06.815] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:06.875] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:06.936] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:08.640] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:08.640] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:08.640] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:08.640] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:08.792] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:08.852] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:08.913] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:08.973] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:09.034] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:09.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:09.155] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:09.216] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:09.276] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:09.337] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:09.397] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:09.458] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.640] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:09.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.761] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:09.882] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:09.942] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:10.003] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:10.063] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:11.765] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:11.765] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:11.766] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:11.766] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:11.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:12.048] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:12.108] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:12.134] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:12.194] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:12.255] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:12.315] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:12.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:12.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:12.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:12.557] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:12.618] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.678] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.739] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.799] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:12.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.920] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:12.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:13.041] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:13.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:13.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:13.223] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:14.923] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:14.923] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:14.923] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:14.923] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:15.074] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:15.135] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:15.196] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:15.256] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:15.317] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:15.377] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:15.438] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:15.498] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:15.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:15.619] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか、探検したいな","created_at":1759428816,"id":"37ff089172527d50c9e5f2be159c76f17dcb17b0599ca1708a917dcdc0d88873","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ab6f0d94ed539db75659a88dfa2e24bf4a992ac06cf883a34e550b257ebd68b07406703a7740a078ab3224bb2872b4994c16491a5a3ef8212e8b046f23106239","tags":[]}] +[14:14:15.680] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:15.740] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:15.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:15.861] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:15.922] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:15.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:16.043] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:16.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:16.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:16.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:16.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428685,"id":"3c539ab73d301695c8bf73d8477a4e00958747c0a37bcd1f06e156cbcbde0a35","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"425bdc6ab5494c7fa6a58b1da38c027455e7fc4f60ac10d498365cb0fbf4283ab52926adda418e256dad7d8eaaa989c1c78fcd0e6603bdcc9b7352c200db2f1f","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:16.346] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:18.012] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:18.012] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:18.012] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:18.012] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:18.164] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:18.224] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:18.285] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:18.345] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:18.406] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:18.467] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:18.527] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:18.588] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:18.649] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:18.709] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:18.770] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:18.830] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:18.891] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:18.951] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.012] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.072] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:19.133] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.193] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.254] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:19.314] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:19.375] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Lu\"}","created_at":1759428688,"id":"f60ca55651e1451b544d0b4bfdde5e6e5372c9540747897a529594dc8cf2b560","kind":0,"pubkey":"55dc660edf3f26fb1685cc9ccb40e9e0073c14c1bf27d33127fe5bcde17376ce","sig":"82576080c14a01f3eac35ba2d0d7354763dca6e1ba016745af3ad0e6e3de1db6a8fd33829fd2cd4fee6493ff53380732032e121f1f084bb3a4a3978d724d9dfc","tags":[]}] +[14:14:19.436] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:21.138] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:21.138] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:21.138] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:21.138] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:21.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:21.351] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:21.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:21.472] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:21.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:21.593] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:21.654] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:21.715] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this trait is less about left/right and more about authoritrian/libertarian. there are plenty of right-authoritarians out there, just as there are left-libertarians. ","created_at":1759428820,"id":"995f5f7d3df962b578276b3494c8669084f37c2e2c7c083c83d701a276080ca6","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"378906037f8336e9936ac97847c84491a6acc6b1ff7a9dffa395edd6cf58fdbcd0b0edbd8dc819fe8905de12010027324c9c6ac7e843b3f12eec7ef0eb994e58","tags":[["alt","A short note: this trait is less about left/right and more about..."],["e","8e75d6502eb579886f8586f098da7128de074777455d9a1523c840d75e4d8d91","wss://nostr.wine/","root","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db"],["p","c9dd2f54ad27e1975436d9789117d760d76d45c923f0902b05432a5f440aa5db","wss://relay.mostr.pub/"]]}] +[14:14:21.775] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"イカの呪縛から解放されしターゴイル","created_at":1759428819,"id":"bcffcdc1706cc8c50fd8256e1778f2243ff4ccdeb62963058fa142966117f9c4","kind":1,"pubkey":"0bdcf0019e79d159bd822b61eac4dd018f6f7d3c66d54bf99ddbcd519fb34f96","sig":"13e02a0ce601de7f1b1aa8e341b441f65e3b62b2577ad9fd7b517d089577d696ee4a9de8c5b747e2734490ca591b19bd31d04d08eb354d86f4ec058bf119a85f","tags":[]}] +[14:14:21.836] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It works 😂","created_at":1759428817,"id":"2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","kind":1,"pubkey":"5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","sig":"49081434ace41b96de457f61c7fe2552a55cb75b9578f2bb86af7d80824af229d563e32036354ae2652ebe0135be4e53bc2d38de732389124c4e114734f9c868","tags":[["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","","reply"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"]]}] +[14:14:21.896] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:21.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:22.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:22.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:22.528] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:24.421] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:24.422] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:24.422] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:24.422] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:24.573] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:24.633] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:24.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:24.755] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:24.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:24.876] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:24.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:24.997] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:25.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:25.118] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:25.179] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:25.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.300] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.361] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.543] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:25.603] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.725] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:25.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:25.846] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:27.566] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:27.566] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:27.566] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:27.566] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:27.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:27.797] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:27.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:27.918] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:27.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:28.039] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:28.100] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:28.160] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:28.221] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:28.281] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0qk58w8xhl2ja2kmzt7jcpvemhxue69uhkv6tvw3jhytnwdaehgu3wwa5kuef0dec82c33x5ehsmt90q6ry7p5vd5xge3hx5mksupnwym857rpvaukk6m9dvmhqer8wa6hwepsxu6rjd35v34hj6rp89ensvnj096ns0mzwfhkzerrv9ehg0t5wf6k2qg7waehxw309ahx7um5wgkkgetk9emk2mrvdaexgetj9ehx2ap0qy08wumn8ghj7mn0wd68yttsw43zuam9d3kx7unyv4ezumn9wshsxs66av must be on his tractor again.","created_at":1759428823,"id":"e609e8af314956193f0bede702fda80b09469c6fd8079c6aa513e91c812494b7","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"6e93a0bbea58485a325ce275ffd07d82000232017148dde23f6b20597db88468a4c1fdcde360afe0e641c5548551aea1165a7d2f41461fd5eef061f0c829df85","tags":[["alt","A short note: nostr:nprofile1qqs2gndun24r2utk5l20tscsdprw5zttvm0..."],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b","wss://filter.nostr.wine/npub153xmex42x4chdf757hp3q6zxagykkek7pdgwuwd074964dkyha9s82ryu8?broadcast=true"]]}] +[14:14:28.342] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:28.402] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.463] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.523] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.584] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.644] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.705] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:28.765] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.826] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.886] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:28.947] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:29.007] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:30.710] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:30.710] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:30.710] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:30.710] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:30.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:30.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:30.983] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:31.044] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:31.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:31.165] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:31.226] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:31.286] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:31.347] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:31.407] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#canineVibes \nhttps://images2.imgbox.com/58/fb/a3o7b6Jp_o.jpg \n#dogstr #dog #Nostr #bestfren","created_at":1759428826,"id":"a94b87102168c932d44042940af94f6618410bdf0e0ee9b42d446969981e2f89","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"6e5fdc96cf7133f2e75e05d79b2199502099e11f7fd2b9f7ac8ffce49dadfe25948036cf553419721c8c598528fc4addec7d4a66a8dad9336211652603aa81a2","tags":[]}] +[14:14:31.468] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:31.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.650] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.771] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:31.892] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:31.952] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:32.013] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:32.073] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:32.099] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:33.796] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:33.796] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:33.796] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:33.796] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:33.948] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:34.009] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:34.069] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:34.130] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:34.190] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:34.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:34.311] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:34.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:34.432] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:34.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"九州の怒涛のボトルキープ焼酎","created_at":1759428829,"id":"81820adb8a09bfb4eb9fdd4e680e9617bdea7ca73b3289e9422fec70aebe745e","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"6452ae335742237c8b32cb4654aef95e57fc59a03ccd685ce72adce40e0c239478c33173deb05fe14303ca517facf54433e011d95ac62147da565be0eb298bf5","tags":[]}] +[14:14:34.554] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:34.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.675] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.796] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.857] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:34.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:34.978] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:35.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:35.099] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:35.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:35.220] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:36.918] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:36.919] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:36.919] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:36.919] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:37.070] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:37.131] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:37.156] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:37.217] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:37.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:37.338] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:37.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:37.459] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:37.520] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:37.580] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:37.641] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:37.701] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:37.762] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:37.822] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:37.883] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:37.943] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:38.004] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:38.064] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:38.125] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:38.186] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:38.246] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:38.307] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:40.003] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:40.003] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:40.004] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:40.004] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:40.155] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:40.215] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:40.275] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:40.336] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:40.397] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:40.457] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:40.518] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:40.578] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:40.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:40.699] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BREAKING: ‘AJN Live’ Soars to Number #5 on Top Free Apple News Apps\n\nhttps://www.infowars.com/posts/breaking-ajn-live-climbs-to-number-6-on-top-free-apple-news-apps/\n\n#Zap to support, DM to suggest new feeds.","created_at":1759428832,"id":"124cac29aa7d4a7614118ca102d3507d2e43bf3541b10f16777e24eab8876d7f","kind":1,"pubkey":"957dd3687817abb53e01635fb4fc1c029c2cd49202ec82f416ec240601b371d8","sig":"881e8a792d5def4c6c4424413daecadb97d39acabe23b03edb071025199661405dd35eea8d734a147e8da1ba3c099476ba0ad3ff45d99b350f8e87ea0941ea77","tags":[]}] +[14:14:40.760] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:40.820] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:40.881] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:40.941] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.002] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.063] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:41.184] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.244] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.305] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:41.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/c6a7edb0706beac7e8db6ec57b884bc88e4ee7ed4b9ac3cb33131980979efea2.webp\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428701,"id":"a7b8d2047f7f35758b6c81c0a1021c674db4f35e8982f1d3ee303c578ede9b98","kind":0,"pubkey":"064c53a1af596a900591d073b547fec1caec6c8308caa0ea172faa5b18e0b3a3","sig":"a70bc9f399023963e0d33b22ffe666f431b56859dd9cc06ba189f973d3cf4471dffd13e9ee0151ee0c17e2cebd1fa189eca7f269da7efcdec821aabca0f1cbfd","tags":[]}] +[14:14:41.426] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:43.086] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:43.086] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:43.086] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:43.087] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:43.237] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:43.298] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:43.358] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:43.419] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:43.479] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:43.540] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:43.600] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:43.661] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:43.721] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:43.782] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gold’s share of central bank reserves is now close to overtaking U.S. Treasuries, per FT.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759428808054-G2E8wN9aAAAccnJ.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759428833,"id":"d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"b8df9335ce39dce329f36d977a300d82d58e6952af9bf0e2a1b3a768439ceb7a07022adf5fd1072de0e9c461a79e24ad32bd4e0638705a6fb682e7cabbac1592","tags":[]}] +[14:14:43.842] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:43.903] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:43.964] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.024] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.145] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.266] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:44.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.448] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:44.509] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:46.205] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:46.205] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:46.205] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:46.205] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:46.357] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:14:46.418] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:46.478] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:46.539] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:46.599] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:46.660] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:46.721] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:46.781] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:46.842] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:46.902] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"うちの学科のみんなから権威って呼ばれてる先生は、当然の如くWikipediaのページがある","created_at":1759428840,"id":"ad4d4eb876b8e7d30de553c1466de5a33ed5f0cef4754de6054e85da7d0a6b45","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"b34dbc45c0c1421f127151d0ffe5bd2f238ec86a9061e92e55d47e34960bc05cf5843ba59173569bf91d1f02a68555943b69f355af54562dd52ba05f7cd049ac","tags":[]}] +[14:14:46.963] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:47.023] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.084] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.109] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.170] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.230] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.291] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:47.412] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.473] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:47.593] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:50.268] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:50.268] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:50.268] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:50.268] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:50.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:14:50.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:14:50.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:50.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:50.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:50.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:50.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:50.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:50.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:50.964] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"忘れてしまった探検の心を取り戻したい","created_at":1759428843,"id":"313e72fb6c9a7bb00e63ea1d0f0c03cbdcb8ab75d4f64790e03342fa757ee639","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"fef9eedf8c0ddc2718c5d6019c28d8901882395d52bbd9db60d887a104a003dcddea0f4fd6ccdcf5331e655650d10e75a80d0557198b9bc751bf2e0d9b2c2bec","tags":[]}] +[14:14:51.025] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:51.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.267] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.328] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.388] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.449] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428746,"id":"3078e683885a5c98a1453e21d5c5f61f2822d26160e51121181e01732aeb526d","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"d1776acbef2e4d89b81faf49d8b628d099d1a5ac9ae905a8b1c9e7caa251d72c3243a9440b00bb77f9263d0701ec0d382184468923f048ed6f450434ee0cf54e","tags":[]}] +[14:14:51.509] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.570] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.630] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:51.691] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:53.352] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:53.353] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:53.353] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:53.353] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:53.503] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:14:53.564] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:14:53.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:14:53.685] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:53.746] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:53.806] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:53.867] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:53.927] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:53.988] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:54.049] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:54.109] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:54.170] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:14:54.230] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.291] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.412] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.593] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.654] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.714] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:54.775] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:14:56.967] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:14:56.968] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:14:56.968] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:14:56.968] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:14:57.118] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:14:57.129] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:14:57.300] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:14:57.360] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:14:57.421] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:14:57.482] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:14:57.542] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:14:57.603] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:14:57.664] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Let's hear some ideas of where is the best place to move to in the States. If you say California you will automatically be banned from Nostr. \nnostr:nevent1qqsykc6nnsduehekm35q0tlqv0a8nu28r5dq0l68nzveuwj58l66hfspz4mhxue69uhhyetvv9ujuerpd46hxtnfduhsyg9s674dg4q88y0w9wcj3aeu8nfjjdrvphsckxdepfy0q3qxghf2s5psgqqqqqqs9c7qkm","created_at":1759428862,"id":"a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","kind":1,"pubkey":"101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","sig":"67aa917fc7cb98d699da7ed04db59c767d86ff81f44ce18c236141878185e2158b83b099f355ad2b24d6ba660514c0cbcf549a647c7080f04fca7c9582c998dc","tags":[["alt","A short note: Let's hear some ideas of where is the best place t..."],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/"],["q","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.damus.io/","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["zap","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.damus.io/","0.9"],["zap","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/","0.1"]]}] +[14:14:57.724] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Amethyst tips\n\nHow to immediately improve your Nostr experience\nhttps://i.nostr.build/s4SdjbcWRnMTLswX.jpg","created_at":1759428857,"id":"84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"0710709c5a3553e4fb8b74c5af372bff3c6955ccf75c46a82293201d06f68c299e373389c94b27aebe5729b11885296a5c30c1c96942e3470082315f96b8564f","tags":[["alt","A short note: #Amethyst tips\n\nHow to immediately improve your No..."],["t","Amethyst"],["t","amethyst"],["r","https://i.nostr.build/s4SdjbcWRnMTLswX.jpg"],["imeta","url https://i.nostr.build/s4SdjbcWRnMTLswX.jpg","x 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","size 18785","m image/jpeg","dim 1008x413","blurhash ZF7^cUEZ?KSaf8s=I,$-I,X2xcNExbWBWAt8Ris;ImxJImxbWUbExcRis;t8WAoMkBj[oMfij]WB","ox 2bdc6fe17ca46b94be794e952cc9e625426d5cc92271fb751e627bbce58e65ac","alt "]]}] +[14:14:57.784] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:14:57.845] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:14:57.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:57.966] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.027] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.087] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.148] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.208] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.269] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.330] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.390] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:14:58.451] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:00.152] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:00.152] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:00.152] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:00.152] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:00.313] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:00.374] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:00.435] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:00.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:00.556] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:00.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:15:00.677] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:15:00.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:15:00.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:15:00.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space News: 'Andromeda' at 25: An optimistic but flawed sci-fi romp cobbled together from the notes of 'Star Trek' creator Gene Roddenberry\nLink: https://www.space.com/entertainment/space-movies-shows/andromeda-at-25-an-optimistic-but-flawed-sci-fi-romp-cobbled-together-from-the-notes-of-star-trek-creator-gene-roddenberry\nSummary: Paying tribute to the 'Star Trek' creator's posthumous space adventure that still resonates with fans today.","created_at":1759428862,"id":"6c44788dbed2053a0c89c0eec3ef947c5527bdc491b740ec1beecd16547ba28a","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"265bb61fadf48c935f02afcc5a1d774cf27b3008f1abc0e7bbddd32dad9be1dbc7685b759f57991c9876a04e8b5954447989ae05fb814e4edc45d9c59e5fe648","tags":[]}] +[14:15:00.919] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:00.980] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:01.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.161] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:01.586] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:03.251] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:03.251] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:03.251] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:03.251] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:03.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:03.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:03.524] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:03.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:03.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:03.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:03.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:15:03.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:15:03.888] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"自分増改築されまくったホテルとか探検したいです","created_at":1759428872,"id":"bcdfa3bc577f65832f0ff5a6fc3ee6d3b178903e4cb6752b9a4971b3e55a6d99","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6f0cb9739be65c682590ac3e864d918b2aeec1e997bb934cb53604455da7e2ac63fbebc2f1a48c3bb9694d2379aa55765cf5fe7b8741b67560cc003bde41713d","tags":[]}] +[14:15:03.948] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","created_at":1759428868,"id":"3b60d8bb7059518a5a326b1f3423916db4261d3724bc8c1c2e4ac6aeadec8d0e","kind":1,"pubkey":"1848313553d37fe4cbd8bad2d6bc6237615d73fca464edb2d1f4355900cf44f6","sig":"6cee9e7870f02e4c79f7ad9e6835d8ef19651898eb4c62b7def3d07379ffd15c2bf7eba66d96959596f5551f54b191f356bfd0d5b8efd530e2f343bd025f1d09","tags":[["alt","A short note: https://video.nostr.build/00a5e6c9fbe9bf575076fac8..."],["e","d9d840ff5aba5f19f3b78f3d5889260c81759f2523290ec6ad1ac30d94370d49","wss://relay.nostr.band/","root","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975"],["p","71ecabd8b6b33548e075ff01b31568ffda19d0ac2788067d99328c6de4885975","wss://bitcoiner.social/"],["r","https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4"],["imeta","url https://video.nostr.build/00a5e6c9fbe9bf575076fac8fa660d87f697e60990b2955f953e703a641bea71.mp4","x 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","size 396490","m video/mp4","dim 460x816","blurhash ]9JRT}004nt7M{~WoeR*WBj?00-;t7ofoLxtRja$kBazM{t7WDj[WCV[WVt6jtjtIVofoeWBofR+j[ofWCj[ayj[WCj@fQ","ox 4635782a6e109a1d5eb6bd89637dc64bd221faa9b56b6c437854f7b1542b9230","alt "]]}] +[14:15:04.008] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:04.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:04.129] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.250] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.311] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.371] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.432] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.492] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.553] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:04.674] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:06.371] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:06.371] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:06.371] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:06.371] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:06.522] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:06.583] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:06.644] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:06.704] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:06.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:06.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:06.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:06.947] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:07.007] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:15:07.068] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Latest Space Breaking News: Detection of phosphine in a brown dwarf atmosphere raises more questions\nLink: https://phys.org/news/2025-10-phosphine-brown-dwarf-atmosphere.html\nSummary: Phosphorus is one of six key elements necessary for life on Earth. When combined with hydrogen, phosphorus forms the molecule phosphine (PH3), an explosive, highly toxic gas.","created_at":1759428874,"id":"0d8f79a20ae4b5c2740918da828d504d03a2b76c6a94ec81297eb02de4ba2056","kind":1,"pubkey":"d1780af05ae04f0b46531fc349e3f5e6fc1c5f7e6fc149224d665d255839c95c","sig":"358c479024989c5e6d09d1f2f95f4203fd1a80aaea1f9efdf9fc5a10d114bd428a87ca0632d61b27f2da04e9797b3a7c3e36faee853f7e39ad585113d3d8661a","tags":[]}] +[14:15:07.093] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:07.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:07.214] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.335] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.517] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.578] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.699] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:07.760] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:09.459] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:09.459] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:09.459] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:09.459] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:09.762] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:09.823] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:09.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:09.944] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:10.004] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:10.065] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:10.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:10.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:10.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:10.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"酒飲みすぎると一生飲まないぞって気持ちになるのに気づいたら飲んでるのなんなんだろう","created_at":1759428882,"id":"4e5f918acf70f4518af26742e24053a97107b008e3039567a013a64f04a0339e","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"8b92c8d1684fcf17906945271e3d0b528cc2faea55a81e3a7274b45f9d3f5c56d4e0909b94db5c81e64f8789474bdf24d1166176fb9b2ffa1f93e4ea01d1ed0d","tags":[]}] +[14:15:10.367] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:10.428] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:10.488] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.549] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.609] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.670] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.730] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.851] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:10.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:11.033] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:12.695] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:12.695] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:12.695] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:12.695] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:12.847] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:12.907] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:12.968] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:13.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:13.089] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:13.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:13.210] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:13.271] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:13.331] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:13.392] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:13.452] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:13.513] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:13.573] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.634] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.694] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.755] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.815] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.876] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.936] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:13.997] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:14.058] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:14.118] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:15.819] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:15.819] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:15.819] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:15.819] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:15.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:16.031] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:16.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:16.152] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:16.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:16.273] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:16.334] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:16.394] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"失敗から学ばないわずかな例","created_at":1759428891,"id":"85816dd470639e9eb34d07a2efd7ec95fe1a86d9d545d6f6e1f156941e6681e4","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"5a2594cb6e5bd4fce491d8fbdc2b481a27b6bd45971fc8c91eb82d8cf587c37b9a6830e5af74adc04a9b5e85aaea23364f0a19699a7afd8f61e124e36358e195","tags":[]}] +[14:15:16.455] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💡 Bitcoin Quiz:\nWhat is a block in Bitcoin?\n#bitcoin #quiz","created_at":1759428886,"id":"e0f207d07ab6cb382a79d7ae1009cf67b62596694e1f8bbaf846849c8705fd79","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"467e7af4fa35a415e8ee1dc0e385b7dc263defef48d7f5169d2f3f44414a8afb74eab69823d0292d3f07e01452b64162ad0900958e64973310ca26f2a52c3835","tags":[]}] +[14:15:16.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📰 Bitcoin clears $120K as onchain data points to a new BTC accumulation phase\nBitcoin cleared the $120,000 level for the first time since August as long-term selling cools and short-term holders stabilize, hinting at a fresh accumulation phase.\nRead more: https://cointelegraph.com/news/bitcoin-clears-dollar120k-as-onchain-data-points-to-a-new-btc-accumulation-phase?utm_source=rss_feed&utm_medium=rss%3F_t%3D1759428542331%26_nocache%3D1759428542331%26vfff%3D1759428542&utm_campaign=rss_partner_inbound\n#bitcoin #btc #news\n📷 Image: https://images.cointelegraph.com/images/528_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS91cGxvYWRzLzIwMjUtMDIvMDE5NGUyZDQtNGM3Ni03NzgzLTljZTAtOWFmNTYxOGJkZGFi.jpg","created_at":1759428884,"id":"f91711b01933d3dc0a3b0d9b5e89faeb71d70800fd9f04011fa6d64ecb086fef","kind":1,"pubkey":"e185c2ad0b87b3207ac2b96d6b8fb1ff10fbf25f93eef4d04fb6dbb9039f19fb","sig":"95181c979d843f0273cd4025b089f7c3ad9b25c5e0c79ef0b69d4c91ba22fd845d82e2ca43ee7e15cadae65bed90e8e6ed03e13c3b111f1c6281ab4d46eb30af","tags":[]}] +[14:15:16.576] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:16.637] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:16.697] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:16.758] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:16.818] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:16.879] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:16.939] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.000] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.061] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.086] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.147] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:17.207] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:18.908] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:18.908] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:18.908] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:18.908] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:19.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:19.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:19.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:19.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:19.482] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:19.543] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:19.603] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:19.664] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:19.724] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:19.785] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:19.845] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:19.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:19.966] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.027] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.087] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.148] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.208] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.269] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.329] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.390] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.451] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:20.511] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:22.211] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:22.211] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:22.211] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:22.211] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:22.513] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:22.573] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:22.633] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:22.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:22.754] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:22.815] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:22.875] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:22.936] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:22.996] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:15 ------------✄","created_at":1759428900,"id":"192a42cbfb24f1c81e49ba76f39465927bccac7eeaa91aca35ff2b9cd39fb213","kind":1,"pubkey":"d7c13d1edc3e0ba63ab74b859b2809fa15c0e8b538237dc8bd165b3f14cfe365","sig":"cb16feb450eb9fe4b05564b4596ef6f24ef191d72d7591567365d1c49fc3c6fb60ed330d7023846a69657571fdd26e0666bb11f665d61878435dd0f22dff93db","tags":[]}] +[14:15:23.057] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#PawsitiveVibes 🌞🐾 \n \n#dogstr #dog #Nostr #bestfren","created_at":1759428896,"id":"088380563de89d0aee402cf46323d519783e196fd61984e5acc10a7b7becd389","kind":1,"pubkey":"6238dc6a9d2631f447980ed1a5400f269c4498dc6fef41091333397fc85e2c96","sig":"837afcf5f4f84ffda4cc1cc2eb8a2c11e7ca2eb053e29fbe819de28e23ae06f3610742beaf242e7d7157b38c131b4fdd6c1dd8415bf3eca33a10aff61889fb4c","tags":[]}] +[14:15:23.117] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:23.178] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:23.238] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.299] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.359] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.420] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.480] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.541] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.601] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.662] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.722] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:23.783] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:25.491] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:25.491] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:25.491] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:25.491] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:25.642] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:25.703] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:25.764] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:25.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:25.884] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:25.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:26.005] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:26.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:26.126] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:26.187] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It's important to have role models 🫡","created_at":1759428903,"id":"abc13d7020f4d64998432af530804eebf89dfaeda1ab2770bb1ab4f7e8fcc3bc","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"b54762fc90da118a67d52773eba68c86ea0f62c3f2dc165116a4c9ac0998b6bada57b065c87ce4fdad1ba770920c15da904b86dc17f7c6378d4553399caad0e6","tags":[["alt","A short note: It's important to have role models 🫡"],["e","00c18579f3fab67414b8cca72fe690e18d5ea09bc2502fadb949f1b9ab51e882","wss://nos.lol/","root","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","wss://nostrelites.org/"]]}] +[14:15:26.247] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:26.308] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:26.368] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.429] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.489] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.550] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.610] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428745,"id":"7450036e8d8b23efa4e23b8a07105674b0e7ab488769d78147c2ff5c9cbeba6c","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"c8d7c55e66096f246ee4ebe6841c5f0d72dc14aff5b9e3a03b5feac6be51223010daa11354c28c67ed037acf94fe80d541f314af27346e5abc858200bb9c6194","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:26.912] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:28.571] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:28.571] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:28.571] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:28.572] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:28.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:28.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:28.844] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:28.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:28.965] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:29.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:29.086] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:29.147] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:29.207] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"brit/pol/ - Capybara edition ... >'African tribe' who camped in Scottish woodland evicted class=\"quote\">>How Taylor Swift made herself too big to fail class=\"quote\">>Two Jewish victims killed in ... \nThread: https://boards.4chan.org/pol/thread/517860501\n\nhttps://i.4cdn.org/pol/1759424920243386s.jpg","created_at":1759428903,"id":"572eab9bd773008d06d598184b3989687029d705e96746105d17dc194ec9b3de","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"2b174f23ecd6c8534bf70830ed79728a4a19a38889cefd307fb7605ae8aa066b86b6e47a49b90960a0d0559fafd25f874a05203497b2b1d5a644035a2243b671","tags":[]}] +[14:15:29.267] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"二郎と同じだね❤️","created_at":1759428903,"id":"632af47d731bb799185000ff4db39a2162d126c008aef7ba7baeff8c4cc29faf","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"f010affe85cdc18f5a20e95c5ab96194e4572f76396828d7b4a7bbc6954864ba4725356dffd8f0452c8fe7b7d214f8d598e1be858ee6009df33ce1b39be42cb2","tags":[]}] +[14:15:29.328] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:29.388] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.449] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:29.510] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.570] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.631] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.691] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.752] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.812] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cool_boy_mew\",\"about\":\"An invincible aura, brimming with happiness\\nKeeping on shiny shiny on the stage\\nI won't ever stop shining on it\\nAn impulsive power in full bloom\\nYou'll be dazzled won't you?\\nMy sweet, GIRA GIRA STAR!\\n\\nI post NSFW stuff here and there, minor dni, you WILL be blocked\",\"picture\":\"https://media.shitposter.world/shitposter.club/d46698895a62ec3a5c8b6999f22aacaeafd0894e315b6d352fcef3a784f77a69.gif?name=_k1DZlmLJIgI_Q.gif\",\"banner\":\"https://media.shitposter.world/shitposter.club/9201a6a66750ed6e965b1b5eac68704885c10834cfef157d99004eb2aaa3380d.jpg?name=1CgckNQv2ega2w.jpg\",\"nip05\":\"coolboymew@shitposter-world.mostr.pub\",\"fields\":[[\"Anilist\",\"https://anilist.co/user/coolboymew/\"],[\"Backloggery\",\"https://backloggery.com/cool_boy_mew\"],[\"Anime Podcast\",\"https://anchor.fm/dad-spc\"],[\"Website\",\"https://headpat.agency\"]]}","created_at":1759428812,"id":"1e5a4245b7b1c7ae4a4b68036bc207d7d37e7abf8d5adaac1b406afede322925","kind":0,"pubkey":"3217f83436133919c5d3d3fc4bb5579922a47b213e14fed46502392e5a10df76","sig":"e47fe92e4317dbaaa00b920f08cd56642cf2d4d1cd71832a39d5e1f90f913adf6b4827352d3904f4cabce6b2a42c5cba883128c0a4ae2db8afdff0e6c6b4c305","tags":[["proxy","https://shitposter.world/users/coolboymew","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.873] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428735,"id":"eeada488f938bffd03aa40300a720a5f6659c7dfa4aeb711296e2b2fec12fecf","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"3a09cf80c9eb726e80f0134809b020bf6b0a6f2c12bf484f9ffb11c23de93dda774a9bd4eaac24f36638346af228597a04a463bb24dccb74c343638622c0ea19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Kid Knievel \",\"about\":\"\",\"picture\":\"https://media.nicecrew.digital/dced8f4045040709eb807ace310c51ed512f5d8d269f98f585ccd3a8b117a12d.jpg\",\"banner\":\"https://media.nicecrew.digital/7a2a949d5342cc52fb0fc1150cee3878a503d958b263b979f1a453169169130c.png\",\"nip05\":\"KidKnievel@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759428709,"id":"70a794a7a3c6f26e640f5ef69cc21f35d5c082b91bc19ae1aa28bb0a8d3bf65e","kind":0,"pubkey":"0ff4b1efaf0a68504f2f7ba06ab6aeac451ee79782e5be74ba6ef5a3d40cf787","sig":"c33b6b428d7ee4eae8541270d47e294cecaafc2eca50af131904ca59bdeca6318a1f717450a1bdaa99a713b0a73a27042d93913d30a0070b39e09401ae0a7d4f","tags":[["proxy","https://nicecrew.digital/users/KidKnievel","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:29.994] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:31.691] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:31.692] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:31.692] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:31.692] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:31.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:31.903] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:31.964] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:32.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:32.085] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:32.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:32.171] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:32.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:32.292] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:32.353] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I still buy mp3 downloads when it's an option 😂","created_at":1759428907,"id":"121a6a2695eb7b686b8f8138d94d3a20705706cd0a01a89e6ec33b3f6af7c808","kind":1,"pubkey":"fea186c2a4678dbc437704eed2160846e8a781e5fb17056e9bb333840d5bdef2","sig":"95c6d67ba28bbc92a7ce3b478e1761213c08bf11d5d923983324152582ea3e190e6d0639611a46d3f1e84a52fab2c54f11127ea805bd4ae6300683421783d87d","tags":[["alt","A short note: I still buy mp3 downloads when it's an option 😂"],["e","d9aab550f3cdef1ca94db056533c9fe5d18b4bb105a2f3f8282f1a865b021276","wss://relay.nostr.band/","root","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["e","b58408458979fe93618724b9f6c8ece517dcf3fb04111ca14ef2d86e5c2b2aaf","wss://nostr.land/","","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a"],["e","a92f06226135511f353a9b130e7b9a4328dddb43430efc448993d18f386b3edd","wss://relay.nostr.band/","reply","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58"],["p","036533caa872376946d4e4fdea4c1a0441eda38ca2d9d9417bb36006cbaabf58","wss://relay.nostr.band/"],["p","010df0c948fe9ab54d2cb7ea420ffa08d57958981b6ea68e83aaa7eb2dd3f05a","wss://nostr.land/"]]}] +[14:15:32.414] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:32.474] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.535] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.596] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.656] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.717] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:32.777] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.838] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.898] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:32.959] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:33.019] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:33.080] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:34.781] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:34.781] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:34.781] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:34.781] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:34.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:34.993] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:35.053] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:35.114] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:35.174] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:35.235] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:35.296] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:35.356] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:35.417] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:35.477] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:35.538] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:35.598] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.659] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.719] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.780] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.840] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:35.901] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:35.961] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:36.022] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:36.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:36.143] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:36.203] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:37.866] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:37.866] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:37.866] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:37.866] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:38.018] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:38.078] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:38.139] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:38.199] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:38.260] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:38.321] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:38.381] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:38.442] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:38.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:38.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Black bouncer under investigation after choking white student ... 20-year-old student had appeared to push the bouncer out of his way, who then rapidly placed him in a headlock to the shock of onlook... \nThread: https://boards.4chan.org/pol/thread/517855429\n\nhttps://i.4cdn.org/pol/1759421204321095s.jpg","created_at":1759428909,"id":"162601b6d33b1e14f97cf4a381760ffcb54538017d8100799eab515be884ccbd","kind":1,"pubkey":"b0826656e03f6f98c1c88678229a47a5be9977f8a12b08c5cdc25678a9a4f020","sig":"28f3ba1ce8314e76c6fddfc9ab492eea4b4b8044748915b271bf6a09b47d83160fff70a4e6b8751230b9b0a541ae90a1521df61b288e845cb5f2bbf90709c461","tags":[]}] +[14:15:38.623] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:38.684] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:38.744] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:38.805] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:38.865] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:38.926] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:38.986] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.047] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.107] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:39.289] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:40.990] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:40.990] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:40.990] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:40.990] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:41.143] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:41.204] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:41.264] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:41.325] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:41.385] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:41.446] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:41.506] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:41.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:41.627] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:41.688] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:41.748] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:41.809] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:41.870] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:41.930] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:41.991] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.051] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:42.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.320] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:42.380] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:44.078] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:44.078] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:44.078] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:44.079] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:44.230] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:44.290] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:44.381] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:44.441] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:44.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:44.562] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:44.623] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:44.683] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:44.744] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:44.804] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:44.865] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:44.925] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:44.986] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.047] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.107] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:45.228] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.289] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.349] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.410] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:45.531] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:46.438] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:15:46.800] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:15:47.102] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:15:47.550] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:15:48.466] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:48.466] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:48.467] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:48.467] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:48.619] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:48.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:48.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:48.800] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:48.861] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:48.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:48.982] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:49.043] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂も探検したい","created_at":1759428916,"id":"78263645fed8fbed6d3416d9f86d58572df4f1a478b601e266266bfd01853dba","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"17f85e8c04a07c2dd362a584d986695a48d99f6c4d58e124e941f06d08aeba94b6862a547f4784d4d8c2070fba261c947e0b6feb701215892a15bca4ad6b8dc8","tags":[]}] +[14:15:49.103] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Will the fate of planet Earth be bleak without white people? ... When someone talks about preserving the white race, it's because they know that white people are the only ones who can protect the plan... \nThread: https://boards.4channel.org/his/thread/18040382\n\nhttps://i.4cdn.org/his/1759419587988474s.jpg","created_at":1759428915,"id":"930afdbc58c132ace266619bfb5baeb47d69a524bdcc23fb2f8b8504d2f20160","kind":1,"pubkey":"507882f5727ba9196bf790429763883948de3d15c7eba5075c5c16899db608dd","sig":"aff026660254bd08055ebcce78093273318d4f6da31a31a91f349d26fd11e0eabdbfccc1d3fab0e063ada804462ac3cc28dc0f60b93eaf2f80ab7588444b47b6","tags":[]}] +[14:15:49.164] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun kedepan\n\nkira-kira siapa yang akan membangunkan anak muda untuk membuat perubahan?\n\nhanya bisa nyimak.","created_at":1759428915,"id":"0afdf9920d1e7c0adcb5e1df33057cf1b3b5504563e468bd85e5e6d5d86161fe","kind":1,"pubkey":"347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","sig":"9819e175a25d82f61726e83d9dff700869d70e9332790e4874a49d54c35e2fb3c4e6d615f125ea1911e8c2ebe8950bbf9200eb74f0b09c25e019906d3dcc1ea7","tags":[["alt","A short note: Yonle:\nsekarang\n\ngw penasaran\n\nsebelum 12 tahun ke..."],["e","1c51cc88957495eca16c996ee0cebcbd4adb6bb0f57eb9b55ccb33e2827eeeb7","wss://offchain.pub/","root","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","ec72e88380b6b3970c53708dc538bdad530904d69ca5c17dcb04e25a04472b04","wss://nostr.mom/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","099e0aad76421fe928067d33e129071edaa83df9a813e43fb75d8eeb26e5de8d","wss://offchain.pub/","","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["e","8c2c51b49ed59b1780e0dbf683800ec512f22d44225ec0c76689b7d7fcc4ae38","wss://offchain.pub/","reply","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c"],["p","347a2370900d19b4e4756221594e8bda706ae5c785de09e59e4605f91a03f49c","wss://relay.mostr.pub/"]]}] +[14:15:49.225] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:49.285] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:49.588] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.648] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.709] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.769] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.830] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"glyn\",\"about\":\"Husband, father, grandfather, follower of Jesus, but very much a work in progress.\\n\\nRetired software developer, ex-visiting lecturer, IETF editor. Likes repairability. BTW I use arch.\\n\\nHobbies: reading, blogging, running, sailing.\\n\\nDelighted to live in Winchester, UK. Involved in a local church.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/107/559/950/613/570/741/original/7b5dff52205ccd56.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/107/559/950/613/570/741/original/547989eccbdc5503.jpg\",\"nip05\":\"underlap@fosstodon-org.mostr.pub\",\"fields\":[[\"Software blog\",\"https://underlap.org\"],[\"General, occasional blog\",\"https://opinion.underlap.org\"],[\"GitHub\",\"https://github.com/glyn\"],[\"Codeberg\",\"https://codeberg.org/glyn\"]]}","created_at":1759428816,"id":"6472044c09d2becd4709a842a1f37ac6801f31568f65de600dfe068edd20ff14","kind":0,"pubkey":"65cd8b3ef65f48f32b01896d26bc0147b906a61b16bccd4891f83121fba31ea2","sig":"3624073863c19821815c87e362b946c7472134d8bce1b5042c35a06ba2e5c4ab33229807767f59687c319fee3e206f388832cc5b4df48b23bf090b4e8262ecfd","tags":[["proxy","https://fosstodon.org/users/underlap","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:49.891] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:50.797] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:15:51.159] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:15:51.461] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:15:51.944] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:15:53.016] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:53.016] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:53.016] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:53.016] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:53.166] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:15:53.227] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:15:53.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:15:53.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:53.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:53.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:53.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:53.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:53.983] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Rapperswil","created_at":1759428925,"id":"50147c2f17aa21d6f5e42ab372637ccff9062d326d10d824d63f314b42b48979","kind":1,"pubkey":"e989aa6e0137d52a410ecd89ae59f7adbfb0bdec9786b9181c3707954b4cfa69","sig":"c7a0e3c3e7ea9ff31da9dd301d92184daf1f32f28ca9c1a3912fbde4c524582f1df1ab6c2d9f0941b74082bc1dc4aecdbde26baf61c4aaf62a5a7d48db381608","tags":[["e","e64cd11167e1a39bcac8e8752440749e1e8a8b3d7abdd23b4b1480f757845183","wss://nos.lol","root"],["e","609a860530f5b6f9069c5e5dd1a55ab0a126b1d00d79ac109b0a634934910a09","","reply"],["p","17538dc2a62769d09443f18c37cbe358fab5bbf981173542aa7c5ff171ed77c4"],["t","rapperswil"]]}] +[14:15:54.044] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Car Repair General ... Replacing Struts With Shit Tools Edition \nThread: https://boards.4channel.org/diy/thread/2948294\n\nhttps://i.4cdn.org/diy/1759375177870525s.jpg","created_at":1759428922,"id":"0085058fdbc6fc68f5e1f0f3c6c0e201bffc9148cac727f2661781981ae8fda8","kind":1,"pubkey":"a826d770d2d94e0c0341af82ec18f0b913b3917ce02b9fcbbc5bfaf8498925c6","sig":"0469fa07588d1d93780666fb9ccc133e4851768a32e236af44542f3863f68d846d89047bdcb11622bdde39044233b47082d7f6f886be926f74e339315cdef407","tags":[]}] +[14:15:54.104] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:54.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:54.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:54.771] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:15:55.676] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:15:56.039] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:15:56.341] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:15:56.825] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:15:58.333] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:15:58.333] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:15:58.333] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:15:58.333] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:15:58.485] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:15:58.546] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:15:58.607] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:15:58.667] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:15:58.728] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:15:58.788] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:15:58.849] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:15:58.909] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:15:58.970] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:15:59.030] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"this is the note of the day","created_at":1759428928,"id":"e7d86bedb3b0575739ed5defd53d0c7a580f55c3b093ab42b0caa342c7ee0a15","kind":1,"pubkey":"2efaa715bbb46dd5be6b7da8d7700266d11674b913b8178addb5c2e63d987331","sig":"398d550d179c7c6bcb605e39d923b1e1d44983bf231a673f67ee0df15639238ab6548971f19c192f1243ea8f4a9438b76c01c3fd4a79073361d7071708570418","tags":[["alt","A short note: this is the note of the day"],["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.nostr.band/","root","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["e","ee66a32b0a3a68533ea6d879f2cb2ec87b0d5660642e76195f1e95bfad64f96b","wss://nostr.land/","reply","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe","wss://welcome.nostr.wine/"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370","wss://nostr.land/"]]}] +[14:15:59.091] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:15:59.151] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.212] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.333] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.454] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:15:59.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.575] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.636] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.696] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:15:59.757] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:00.663] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:01.026] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:01.328] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:01.811] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:03.323] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:03.323] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:03.323] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:03.323] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:03.474] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:03.535] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:03.595] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:03.655] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:03.716] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:03.777] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:03.837] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:16:03.898] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:16:03.959] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:16:04.019] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Trump Says Radical Left's Shutdown Misstep Opens \"Unprecedented Opportunity\" For Mass Firings Of Fed Workers\nhttps://www.zerohedge.com/political/democrats-govt-shutdown-misstep-revives-trump-doge-clear-out-dead-wood-bloated-dc","created_at":1759428929,"id":"9712de449c96bf9cd5cd8f77c41f475b5f43fe9d8fda9060d646cedcc3c19349","kind":1,"pubkey":"164857321a7b0e7403e08f1bef80967aca9385fbde04b71da2e44010823d46ad","sig":"046bc8ec673fd4e1aca4d2f7380b83ad47ddbda881c30d4e45a2987206a74333eed108432327a9b389b9788db53afce479ee06bf853c6ad693d6e5330a820f16","tags":[]}] +[14:16:04.080] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:04.140] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:04.201] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.261] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.322] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.382] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.443] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.503] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:04.564] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.685] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.745] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:04.806] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:05.712] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:06.075] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:06.377] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:06.860] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:07.741] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:07.742] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:07.742] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:07.742] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:07.894] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:07.954] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:08.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:08.075] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:08.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:08.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:08.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:08.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:16:08.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:16:08.439] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf28rkdkgszsgmxy6uet7fqrmacrdgzkkgpz9mhxue69uhkummnw3ezuamfdejj7q3qqnykqjt67cv2ux84z3anuhpsnmea3f39za52rsyzpcpvjdmgesasxpqqqqqqzf3f6f4","created_at":1759428929,"id":"4fe18771deb9fff83ad3e28934deb8c0a388d0150903bf5802b79796943ae11c","kind":1,"pubkey":"5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","sig":"babc831990103ab78dda88bde637e6bddffe73a5fd123638cd64e63cb3667761c6e5c22736bc2c4bbf16b04ca4da164d80765d0cf93004d3cbb5ee9a818b8461","tags":[["alt","A short note: Paige, yes! \nnostr:nevent1qqs94sauf7ah953lequq7gf2..."],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["q","5ac3bc4fbb72d23fc8380f212a38ecdb22028236626b995f9201efb81b502b59","wss://nostr.wine/","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["zap","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/","0.9"],["zap","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/","0.1"]]}] +[14:16:08.499] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:08.560] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.620] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.681] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.742] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.802] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.863] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:08.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:08.984] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:09.044] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:09.105] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"daniel:// stenberg://\",\"about\":\"I write curl. I don't know anything.\",\"picture\":\"https://files.mastodon.social/accounts/avatars/000/039/207/original/972a88b4292b90af.jpg\",\"banner\":\"https://files.mastodon.social/accounts/headers/000/039/207/original/14b6fb808cf09ba2.jpg\",\"nip05\":\"bagder@mastodon-social.mostr.pub\",\"fields\":[[\"website\",\"https://daniel.haxx.se/\"],[\"github\",\"https://github.com/bagder\"]]}","created_at":1759428816,"id":"3a798945f788470cd936b8d0289dd3aed47b0d94f3a4c1734882f3335d8cabfe","kind":0,"pubkey":"783f5e8607f5b88c53c6c6a334445e79376235013841bc40db7c59eeb7b9e94b","sig":"ab6f22b116453881c1defedd6c27d148206f754b32f39a7e36528eebee456aaa5b6f7e69af57b32fe5ca6bfd350806a448c489c3fa8e3f11de4d11d2af411736","tags":[["proxy","https://mastodon.social/users/bagder","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:09.165] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:10.071] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:10.434] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:10.736] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:11.219] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:12.139] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:12.140] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:12.140] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:12.140] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:12.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:12.454] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:12.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:12.575] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:12.636] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:12.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:12.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:12.818] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:12.878] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:16:12.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:16:12.999] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:13.059] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:13.120] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.181] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.302] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.362] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.423] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:13.483] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.604] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:13.665] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:13.725] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759428970,"id":"3dcc288de450f3fd689b75b7bd1372e76d84de1579775cb1ada98de457496701","kind":3,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"f87cce7a5a220c3f965fd7c9f5f5c67a4fc72862c91696813eaaea87857aabc6b568f72e28f8eb9679626879a518d8cd898ee407481ef166c20c38da7ca499f0","tags":[["p","585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","123afae7d187ba36d6ddcd97dbf4acc59aeffe243f782592ff8f25ed579df306"],["p","dd9b989dfe5e0840a92538f3e9f84f674e5f17ab05932efbacb4d8e6c905f302"],["p","b6960fcbc7c04536bc98f55c48d9f9fee55983e7f763c124453af728af82311d"],["p","2a55ed52ed31f85f8bdef3bdd165aa74265d82c952193d7b76fb4c76cccc4231"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1c8c756b11bee55a9539dc96fa3032cf08ca65ce04b4f68ec1d09193f0527c6e"],["p","b10b0d5e5fae9c6c48a8c77f7e5abd42a79e9480e25a4094051d4ba4ce14456b"],["p","0403c86a1bb4cfbc34c8a493fbd1f0d158d42dd06d03eaa3720882a066d3a378"],["p","2c930918de42dca5d140c84c58e6d4f25b05a5d016171001c29c2a236d90c511"],["p","7d2473f4eb255262f97f8bc5cb431997503f2ed3d0b133b1b5e45229fa3b00ff"],["p","583ef554f95ac3c34d18d90005f80788bb8357b232236646815f4826c66e54a6"],["p","8be6bafee48ba2551e7f7a71455ae78e0a3cac5c469386306ef0c7a9b50da031"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","43baaf0c28e6cfb195b17ee083e19eb3a4afdfac54d9b6baf170270ed193e34c"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","8fb140b4e8ddef97ce4b821d247278a1a4353362623f64021484b372f948000c"],["p","ad9738030ab84c04ffaec64abadd6cc682cb3501d193a5ff1c94b90770915558"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","bad9867380f6f2b8f50d3ff869aaf75dc998797204a7c85a4bf6f8bb9fc07078"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","184dca27c18fec7d9e38e15552a6d5c2cd22741a7fe356fd13c4bd99c63594ee"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6d0aab5fa4dbf03612bb16466c9e6e102b6dcbb51251735f8f3b3f36f8136f75"],["p","38a8f31c3e46f488768757e0b93a26ac28451259bb4295ea3847b38088333a6c"],["p","cbaa0c829ed322c1551cb6619b4c08b9a26ac97ffb4e959205eec78ee9313245"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","bef514bd58c8ceea4beb9e6b84a8d983935f7be26f49e14df68098f1ba64156e"],["p","111647ac263ecb407f191dea6c5dc77ec22c99274da8a10a2c694d6965d03421"],["p","7744c38a5915be8ac8fee2cd615473da463b5fa81d8876a499c9f99921558bdb"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","cf473ebe9736ba689c718de3d5ef38909bca57db3c38e3f9de7f5dadfc88ed6f"]]}] +[14:16:14.632] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:14.995] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:15.297] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:15.780] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:16.696] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:16.696] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:16.696] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:16.696] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:16.848] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:16.954] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:17.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:17.076] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:17.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:17.161] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:17.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:17.282] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:17.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for XMR\nPrice: 0.00288218BTC (3%)\nBTC: 0.0025 - 0.005\nXMR: 0.86739898 - 1.73479796\nMethod: Altcoins\nCreated: 2025-10-02T18:15:20Z","created_at":1759428938,"id":"b334d673cf4cac72e79ad6b501be5ffd8dc2a91fe95082e34afd81f2cc22ed57","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1790a9e48cecf21194eb8e3eda4a0a1a15882c8562333f4a26d8f7b7cea0a24f23706c794557184c36c9a115e62997132c0602b9701a1516a014c84a4cb4bea0","tags":[]}] +[14:16:17.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🏁🐫 Silk-Road Racing Team\n\n#silkroad #freeross #bitcoin #racing\n\n\n⚡️https://ronin21.xyz/products/silk-road-racing-team-heavyweight-t-shirt?variant=51175733789014\nhttps://blossom.primal.net/938bf1e974172957d962e07dc9365c06424c5f62aae3ceb1562e258cc5a0d939.jpg","created_at":1759428931,"id":"ae45a55b877f321295ba976e4d7fe1b73b8bbcbc76fbbd11f874a35c7f901809","kind":1,"pubkey":"163717aed71f45fe18e706bb1230a34aea815043acb22f54c5cdfe30d0c96bc4","sig":"4167314c607129f6d3109d385458ef112c61f29bdb9efbe582cac76a289441560b9ef7b1d58579a86642a1a2250a6dba2a4058232187735a3c9821a7323883e2","tags":[["t","silkroad"],["t","freeross"],["t","bitcoin"],["t","racing"]]}] +[14:16:17.464] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:17.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:17.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:17.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:17.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:18.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:18.070] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"EvolLove\",\"about\":\"Swedish PUREBLOOD Self employed carpenter/tiler and Furniture Designer. Hobbies, fishing, boating, welding.\",\"picture\":\"https://static.noauthority.social/accounts/avatars/111/784/414/534/431/344/original/b073912857497444.png\",\"banner\":\"https://static.noauthority.social/accounts/headers/111/784/414/534/431/344/original/0b4e93fde3f1f675.jpg\",\"nip05\":\"EvolLove@noauthority-social.mostr.pub\",\"fields\":[[\"Survivor ☠️ NoAgendaSocial.com holocaust\",\"\"]]}","created_at":1759428853,"id":"1cb2b42b02a6fdf7b25aaee402a1be1718023915de76b76dd6afa26392399f40","kind":0,"pubkey":"2d6d74606436834ba1137cbe300c4a9bff4cb72d274ea8f6c3d51bdfe2e56974","sig":"1d7f9b083b07acc58d20fd00790afc6bf948342e4055bf4f35710a3e3b75ad5eba6e770235d02115c8d13c70d07b25ce6676ec11f738163d8de438b30b9aab75","tags":[["proxy","https://noauthority.social/users/EvolLove","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:18.130] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:18.191] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759428970,"id":"3dcc288de450f3fd689b75b7bd1372e76d84de1579775cb1ada98de457496701","kind":3,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"f87cce7a5a220c3f965fd7c9f5f5c67a4fc72862c91696813eaaea87857aabc6b568f72e28f8eb9679626879a518d8cd898ee407481ef166c20c38da7ca499f0","tags":[["p","585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","123afae7d187ba36d6ddcd97dbf4acc59aeffe243f782592ff8f25ed579df306"],["p","dd9b989dfe5e0840a92538f3e9f84f674e5f17ab05932efbacb4d8e6c905f302"],["p","b6960fcbc7c04536bc98f55c48d9f9fee55983e7f763c124453af728af82311d"],["p","2a55ed52ed31f85f8bdef3bdd165aa74265d82c952193d7b76fb4c76cccc4231"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1c8c756b11bee55a9539dc96fa3032cf08ca65ce04b4f68ec1d09193f0527c6e"],["p","b10b0d5e5fae9c6c48a8c77f7e5abd42a79e9480e25a4094051d4ba4ce14456b"],["p","0403c86a1bb4cfbc34c8a493fbd1f0d158d42dd06d03eaa3720882a066d3a378"],["p","2c930918de42dca5d140c84c58e6d4f25b05a5d016171001c29c2a236d90c511"],["p","7d2473f4eb255262f97f8bc5cb431997503f2ed3d0b133b1b5e45229fa3b00ff"],["p","583ef554f95ac3c34d18d90005f80788bb8357b232236646815f4826c66e54a6"],["p","8be6bafee48ba2551e7f7a71455ae78e0a3cac5c469386306ef0c7a9b50da031"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","43baaf0c28e6cfb195b17ee083e19eb3a4afdfac54d9b6baf170270ed193e34c"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","8fb140b4e8ddef97ce4b821d247278a1a4353362623f64021484b372f948000c"],["p","ad9738030ab84c04ffaec64abadd6cc682cb3501d193a5ff1c94b90770915558"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","bad9867380f6f2b8f50d3ff869aaf75dc998797204a7c85a4bf6f8bb9fc07078"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","184dca27c18fec7d9e38e15552a6d5c2cd22741a7fe356fd13c4bd99c63594ee"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6d0aab5fa4dbf03612bb16466c9e6e102b6dcbb51251735f8f3b3f36f8136f75"],["p","38a8f31c3e46f488768757e0b93a26ac28451259bb4295ea3847b38088333a6c"],["p","cbaa0c829ed322c1551cb6619b4c08b9a26ac97ffb4e959205eec78ee9313245"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","bef514bd58c8ceea4beb9e6b84a8d983935f7be26f49e14df68098f1ba64156e"],["p","111647ac263ecb407f191dea6c5dc77ec22c99274da8a10a2c694d6965d03421"],["p","7744c38a5915be8ac8fee2cd615473da463b5fa81d8876a499c9f99921558bdb"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","cf473ebe9736ba689c718de3d5ef38909bca57db3c38e3f9de7f5dadfc88ed6f"]]}] +[14:16:19.097] RECV nos.lol:443: 35ad47c025884a286dd65fa"],["p","bbb5dda0e15567979f0543407bdc2033d6f0bbb30f72512a981cfdb2f09e2747" +[14:16:19.460] RECV nos.lol:443: 344279f7a36aa3de1710c9198b1e9e8a394cd13e0dd5c994c63"],["p +[14:16:19.761] RECV nos.lol:443: e5aaf4b89afc400c184579e"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],[ +[14:16:20.244] RECV nos.lol:443: b558da5ff69bc3cbb81e"],["p","726a1e261cc6474674e8285 +[14:16:21.158] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:21.158] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:21.159] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:21.159] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:21.310] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:21.371] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:21.431] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:21.492] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:21.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:21.613] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:21.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:21.734] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:21.795] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:21.855] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"飲食に関して、縄文時代の遺伝子が残ってるから貪欲になってしまう傾向があるので、これは私たちのせいではない","created_at":1759428950,"id":"9690d42b7f5aaa858d77eda3ee8982930ed085a8293fcacd8cdb98c0e7b8bbbc","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d75067485e36b9eb4c85a1af9b6044d2b7f853d3fbb18faab9140c67795837704e1345b90548b1802546c3b0f4e880c16b82c3204f50a7a1806d6ec3bd3fe8d7","tags":[]}] +[14:16:21.916] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:21.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7\"}","created_at":1759428978,"id":"3e5c572016e52883f30501eb9c5f91019e28b0e83b92ceb5750ce69f95402f63","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"09723c5d69fbf51a86362c408c28bf6d155d80f8716096787352efa0c7eaa7d3a3d4ed7c457a3d49410719e9b6a23fecbdf6a00e946e310413605fecdc72414f","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7"]]}] +[14:16:22.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:22.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.124] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.185] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.245] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.306] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.366] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:22.427] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.487] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:22.548] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:22.911] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:24.800] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:24.801] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:24.801] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:24.801] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:24.960] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:25.021] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:25.081] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:25.142] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:25.202] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:25.263] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:25.323] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:25.384] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:25.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:25.505] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:25.565] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:25.626] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7\"}","created_at":1759428978,"id":"3e5c572016e52883f30501eb9c5f91019e28b0e83b92ceb5750ce69f95402f63","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"09723c5d69fbf51a86362c408c28bf6d155d80f8716096787352efa0c7eaa7d3a3d4ed7c457a3d49410719e9b6a23fecbdf6a00e946e310413605fecdc72414f","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7"]]}] +[14:16:25.686] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:25.747] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:25.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:25.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:25.929] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:25.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:26.050] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:26.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:26.171] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:26.232] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:26.594] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:28.258] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:28.258] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:28.258] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:28.258] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:28.590] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:28.651] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:28.711] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:28.772] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:28.832] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:28.893] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:28.953] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:29.014] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:29.075] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:29.135] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:29.196] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:29.256] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7\"}","created_at":1759428978,"id":"3e5c572016e52883f30501eb9c5f91019e28b0e83b92ceb5750ce69f95402f63","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"09723c5d69fbf51a86362c408c28bf6d155d80f8716096787352efa0c7eaa7d3a3d4ed7c457a3d49410719e9b6a23fecbdf6a00e946e310413605fecdc72414f","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7"]]}] +[14:16:29.317] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:29.377] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.438] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.498] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.559] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.619] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.680] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:29.740] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:29.861] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:30.224] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:31.930] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:31.930] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:31.930] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:31.930] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:32.083] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:32.143] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:32.169] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:32.229] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:32.290] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:32.350] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:32.411] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:32.472] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:32.532] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:32.593] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:32.653] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:32.714] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759428991,"id":"254c602f2fa60ec03a31bf35c18a111d80cc7b8c20b6ad1301a9174428a982f3","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"b758419661044e901d624d79576bc6153a5effaf413be53e4bd939235eb33d54031a49d16408b8983fc87d204f7e93e0ddc593c955131329290b55e559d42923","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:32.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:32.835] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:32.896] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:32.956] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.017] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:33.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:33.320] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:33.683] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:35.383] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:35.383] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:35.383] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:35.383] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:35.540] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:35.600] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:35.661] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:35.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:35.782] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:35.842] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:35.903] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:35.963] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:36.024] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:36.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:36.145] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:36.205] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759428991,"id":"254c602f2fa60ec03a31bf35c18a111d80cc7b8c20b6ad1301a9174428a982f3","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"b758419661044e901d624d79576bc6153a5effaf413be53e4bd939235eb33d54031a49d16408b8983fc87d204f7e93e0ddc593c955131329290b55e559d42923","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:36.266] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:36.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.448] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.508] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.569] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:36.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:36.811] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:37.139] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:39.197] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:39.197] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:39.197] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:39.197] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:39.350] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:39.410] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:39.470] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:39.531] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:39.591] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:39.652] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:39.712] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:39.773] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:39.833] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:39.894] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"芋だ。ポテトだ。","created_at":1759428952,"id":"98e10ca46043d19a48e42b965592959e8ded70ff480062a571fec75efcefae77","kind":1,"pubkey":"917bbafe469b71a4a6fc70471bde788fb972baad56ab6e5aeede132514d91f2f","sig":"d1dcdab580fa953f6c02be147b02908b581571a7ac53635859f0c16650e6e07805384889dff999f0078f019af6d43517f1ccc8ba5d67564d333c2efc8baad6ca","tags":[]}] +[14:16:39.954] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:40.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:40.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759428991,"id":"254c602f2fa60ec03a31bf35c18a111d80cc7b8c20b6ad1301a9174428a982f3","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"b758419661044e901d624d79576bc6153a5effaf413be53e4bd939235eb33d54031a49d16408b8983fc87d204f7e93e0ddc593c955131329290b55e559d42923","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:40.137] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:40.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.319] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.440] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.501] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:40.562] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.622] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:40.682] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:41.045] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:42.713] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:42.713] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:42.713] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:42.713] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:42.865] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:42.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:42.986] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:43.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:43.107] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:43.168] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:43.228] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:43.289] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:43.349] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:43.410] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:43.470] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:43.531] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759428991,"id":"254c602f2fa60ec03a31bf35c18a111d80cc7b8c20b6ad1301a9174428a982f3","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"b758419661044e901d624d79576bc6153a5effaf413be53e4bd939235eb33d54031a49d16408b8983fc87d204f7e93e0ddc593c955131329290b55e559d42923","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:43.591] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:43.652] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.712] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.773] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.834] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.894] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:43.954] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:44.015] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:44.075] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:44.136] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:44.197] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:44.560] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:46.268] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:46.268] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:46.268] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:46.268] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:46.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:46.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:46.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:46.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:46.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:46.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:46.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:46.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:46.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:46.964] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:47.025] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:47.086] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:47.112] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:47.172] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.233] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.293] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.354] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.414] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.475] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:47.535] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.596] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:47.657] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:47.717] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:48.080] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:49.782] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:49.782] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:49.782] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:49.782] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:49.933] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:49.994] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:50.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:50.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:50.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:50.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:50.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:50.386] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:50.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:50.507] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI have fried from frozen ground beef with French onion soup mix was good results.\n\nHeat is usually low and slow for my style.","created_at":1759428955,"id":"4eb06f0937f2e18bd0051f87c73cad4c576d5d12c9474a6b57a53d19ea7d7fef","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"aa4c10e1a4c21097791c27bac2be0e35aa25dc1163ebfc51be5708dc3fe3b9f6611a13a5272ddedc8094ed68f1522515abf7a0593c26ba4b5954fa97fd21be17","tags":[["alt","A short note: Oho! A fellow foodie! 💯\n\nOnions?\nAbsolutely!\n\nI h..."],["e","4ee2233812b9302c7a0f3992176d0bdff501c49c4146143a08c8a4aeed8b2a2b","wss://relay.damus.io/","root","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","31360a29ecacdce4c05d436d70d771475a8101496b91972a7886bec9a7764b3b","wss://relay.damus.io/","","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["e","98ba0bad82c2579611d28e581b02dbe0be119f9c7c324036efd4a8b0649093b5","wss://nostr.bitcoiner.social/","","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f"],["e","6b7892f264a7721948c650b468215f0f6c2eece6612590f519888c49fc62f075","wss://relay.damus.io/","reply","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480"],["p","5a261a61311946d9326ac55199e4942ae0d111086b5c21a8857053c42ebd4480","wss://nos.lol/"],["p","98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","wss://nos.lol/"]]}] +[14:16:50.568] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:50.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:50.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:50.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:50.810] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:50.871] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:50.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:50.992] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:51.053] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:51.114] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:51.174] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:51.235] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:51.295] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:51.658] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:53.322] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:53.322] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:53.322] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:53.322] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:53.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:16:53.534] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:53.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:53.655] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:53.715] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:53.776] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:53.836] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:53.897] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:53.957] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:54.018] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i see this move gained you a few IQ points","created_at":1759428956,"id":"56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"3880a53a64194a738401e11afed5af2879945be2358605c2c53de7e0e7706dbd8e9c5b4cab76c43ff713676c486f0f892c4fce3ae09601d6b77396796fed7a2b","tags":[["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://relay.damus.io/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:16:54.079] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:54.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:54.200] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:54.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.381] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.502] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.563] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:54.623] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.684] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:54.744] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:54.805] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:55.168] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:16:56.873] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:16:56.873] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:16:56.873] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:16:56.873] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:16:57.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:16:57.086] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:16:57.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:16:57.171] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:16:57.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:16:57.292] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:16:57.353] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:16:57.413] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:16:57.474] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:16:57.534] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しみ会でドッヂボール選ぶ人ってセンスないよね","created_at":1759428956,"id":"fd9e2e7f9347d11b9044d469da1382e1bd2b930856a612213f8e1427ebd89626","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"ca3985493016154cea217b3c3db2c58a64cd964f813ea8165192caee6a47d8394f6ce9e1732046f17f7d03299a3f21ecd9cc75922d881bbd84d078dcefe40b6a","tags":[]}] +[14:16:57.595] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:16:57.655] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:16:57.716] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:16:57.776] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:57.837] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:57.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:57.958] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:58.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:58.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:16:58.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:58.200] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:16:58.260] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:16:58.321] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:16:58.684] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:00.579] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:00.579] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:00.579] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:00.579] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:00.731] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:00.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:00.852] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:00.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:00.973] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:01.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:01.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:01.155] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:01.215] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:17:01.276] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:17:01.336] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:01.397] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:01.458] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:01.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.760] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:01.881] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:01.942] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:02.002] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:02.063] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:17:02.390] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:04.093] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:04.093] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:04.093] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:04.093] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:04.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:04.306] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:04.367] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:04.427] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:04.488] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:04.548] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:04.609] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:04.670] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:04.730] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:17:04.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:17:04.851] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:04.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:04.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:05.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.094] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:05.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428856,"id":"eb90ff230a09549fe69c78f3656d56431ac9dbd77a5612c602ae28ea34045135","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"7ca9e7c08e5d5effa7f2941414bbb66c522cdd4b14fff82cf07a3bdefb78f6302d75dda512a325c4703226979493038ebe7f9972ccd06e01603a69a2428f637f","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:05.517] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:05.578] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:17:05.941] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:07.647] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:07.647] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:07.647] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:07.647] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:07.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:07.949] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:08.010] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:08.070] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:08.131] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:08.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:08.252] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:08.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:08.373] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:17:08.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remind Me Bot\nnostr:npub1rmndme2y9d5lxun58dntu38hx5pl6jwvnpm77d0cqfnw8e6wjh8s2gzzgs\nリマインダボット\n!RemindMe 1 min \"message\"などと投稿しておくとその時間にリマインドしてくれるでしょう。\n海外でも利用できるように時間帯設定があります。\n!RemindMe TZ Asia/Tokyo\nと入れておけば日本時間で動くようになります。標準はUTCです。\n\ncategory: BOT","created_at":1759428962,"id":"45f0094a9701d3599c3eb0e62f8366a5abcc00f6868eedd1f135c0765ae6749f","kind":1,"pubkey":"7202985c7e34a7c1c48b93d882a953c5258cf226204ec95bececd8360c792969","sig":"3fabdd615be9388ddf5bc940ff979fa22bede224eb1277fc8b1d4497a688792dc279383b1e15463e491a29ca3cae3bd20f83eaab1ee796c9f9d9ccddbe3f4989","tags":[]}] +[14:17:08.494] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:08.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.615] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:08.676] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:08.736] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.797] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.858] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.918] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:08.979] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:09.039] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:09.100] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:09.161] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:09.221] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:17:09.584] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:11.476] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:11.476] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:11.476] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:11.476] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:11.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:11.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:11.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:11.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:11.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:11.954] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:12.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:12.076] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:12.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:12.162] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Virginia 🫡","created_at":1759428962,"id":"5549e0b144032ad67c0ef276cd26b16576f43af006539363e1c3a88cafd8c357","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"9a03db25109ec3668bd7869d2048b8f3ac4e28b931f47fd60b1b9f3c936b5b341353277fb3b3eedd2c8659fd267e4557577ad93b75b3cfc343a051da3a4071b8","tags":[["e","4b63539c1bccdf36dc6807afe063fa79f1471d1a07ff4798999e3a543ff5aba6","wss://relay.primal.net","root"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","","mention"]]}] +[14:17:12.222] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:12.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:12.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:12.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:12.828] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:12.888] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:12.949] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429000,"id":"bcbb88421f4c5833384c88219b5c6189b3c9b185da6c934f79b578b05b7d3710","kind":3,"pubkey":"a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256","sig":"91401876f66d2dbd3c5bb8e432932e8952fa83d5cae5eafa421ce20270ea86ed86f9ff93fc1c21ad9c772563d07d7f5dcb8b76e9241594699d4bbed7440a2a4f","tags":[["p","95a061b8fbdd5e0275d7069d1a1ab21b649af6c9c68250325f5e778bd926aa66"],["p","01d0bbf9537ef1fd0ddf815f41c1896738f6a3a0f600f51c782b7d8891130d4c"],["p","da66d621d05bb7a7d64c1adfe0ea6421ca7db60d1089cd98b06ccfcd0ea2ed78"],["p","508f28656b8db436153d5239de5034abc0351b8c90ac33e6b156d1fea64b2960"],["p","b3b37da64c8df56ecfe5fa287f0121fa6dfe72e18325d0ce2e3866b93318d8f5"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","f8e51fc216c8a8507347651219f07e22ef9f4299a8319fe3f7ee97a194140811"],["p","0d94dde23d23fad80f70488a374096197d068bcb2f0804055cb8450f0e315190"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","f0fb31d1810a9f95df3d178fcd67ca0b09879ad11e8689e56962cd839fb8ead4"],["p","bf2376e17ba4ec269d10fcc996a4746b451152be9031fa48e74553dde5526bce"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"],["p","0f52b01a82649e892f9175f8dcc8cd432ac6cd5e0f5d5f8bbde62b1b21263741"],["p","469223f4ce484bba4e125a8c8a92032e16e5d07b723ea5da2f253b2627da92c7"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","2efdb88e1ad052d9d72eb8f6787efa7f2c432064ff7af8efd1776af944bfc3e3"],["p","338b826c2c3e2b173c6acc1adc77c047076030a1329c7127a622d1325e59c1b0"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","16784bad81b7b8215ee4cea0adf04793aba9a836608792c63010ebced7d184c8"],["p","be5a7d74a3c1376016833ed8e02c1571d5b06fab277ad4d6cee2560aa23ed9be"],["p","8aafa7d540d9f24704477eba0f39ec24b7d65439bcf588b04d69cc428aff4c2a"],["p","681b9e384921582ecac2b4641a9337f17b66698a01065694c91dc4c345c6de1e"],["p","8bad9b1fcfc287230812387866c0e0d741da13bee3d592a97f706108c48173fc"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b8dd9afd51008741db4b5ff40ef0bed9bfc446e6ea69f5d5890b7c0865a2c3f1"],["p","de75eb1d7a6627807a8dff0fb337cfcf189e7e9af8ab6229f688f664710c3014"],["p","d9f2471cc8f33111071bd0de1fef87d783cc4140e0f70ba9298a53b9e07c60f6"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","9d7af6946b320b3ba6b4d386de2b2cf3f8ac52fdcb63f3343d1a8362693a3ce5"],["p","8d9d2b77930ee54ec3e46faf774ddd041dbb4e4aa35ad47c025884a286dd65fa"],["p","b70ea0ddabd96e073c703e0385f5bb38e52119c923fecdbb5bf7c98f900166aa"],["p","d534e53eb0956e4b9afd891bb2f8319970309f14200a9459b534a83e3980adaf"],["p","be39043cc12efbddfee564d95da751a71df6c139e2def45c431cadeb4a573ca3"],["p","f4db5270bd991b17bea1e6d035f45dee392919c29474bbac10342d223c74e0d0"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","1d80e5588de010d137a67c42b03717595f5f510e73e42cfc48f31bae91844d59"],["p","722a9b1535c6a7e207b8744b88c043e97111fe1b35664aface5d6d826212c703"],["p","cccfccb023231da836fd3f86605163fc41be51800fe13248da3125b35718521c"],["p","5ffb8e1b6b629c0e34a013f9298ebb0759b98a3d24029916321d5eb4255b6735"],["p","6fc6cd9b3a8532a6ec42a8be2b8ffc0b7abe675b4a1c62314e131a6b06b0bf6e"],["p","d70d50091504b992d1838822af245d5f6b3a16b82d917acb7924cef61ed4acee"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","1af54955936be804f95010647ea5ada5c7627eddf0734a7f813bba0e31eed960"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","a7121028d6074c3413a581d1176c3cee9b5c3a404c4ee55ad3a6d92f7fbf9256"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","f96c3d76497074c4c83a7b3823380e77dc73d5a9494fd2e053e4a1453e17824b"],["p","a6230ed2c2cb6c9240b4de29946e0b3857c0652cc8b3bee5e73c793f5c09a369"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","414908397af26640247042da7f942fc931837c8d9d3207e271cb2fb2bbd9a4ed"],["p","2bcb31df1c1d848f230c86011a01aa329afb2a0c32fc926c725dc8e293e2a4e4"],["p","9b6d95b76a01191a4c778185681ed7f3bced2fffa8e41516ec78240b213285f5"],["p","2664209547c22a784407a7987fcf7bc0081dc06cdccb98ec7c61953b4d73c6d4"],["p","4b0bcab460adda31fad5a326fb0c04f6ec821fb24be85dbdc03c04cc0e12fc07"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","62fe49023565e07b56d74a203721f4ea21f284f9295a019a98954fb7864eec9a"],["p","47969365e7e3cd52ebc499f5d9a687a64b59812008a4a2fbc273ef61624a085d"],["p","ab701878befc26097fcdd272bb701aebdfa3d227caac85d28c5d44de84d6d44e"],["p","665e667acb1a5e3d601cae03bf02b9f105547c070067ab0663c5666a1dcac1b3"],["p","c0e0c4272134d92da8651650c10ca612b710a670d5e043488f27e073a1f63a16"],["p","fd6faf1e35435a286656ec9f8e2bd716d7c168c0358acb8cb39ee8ecae104d78"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","1aa1dbbeeb04dde30e1e7a00f7eea7605549e78726d53522e3990aa68009f433"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","d93336159384719a6309977ed5a6afe024816d47587a30af99149cbd441e7344"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","32d1df355d2ceeea5cd1c41d574b9105c68eeefd7c0bd29e49c152fe71c4c7d5"],["p","2243581d5f557483a449dc06ec38b38f42f32832cdd05cce974c8f82771762ad"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85"],["p","6116d06dd94aedb145d2e7689a2fe2249de56fc4e89a4cace88a0d4b1d80b135"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","837332c28d91f1893f8ac8d05451860e54de3b13b919180677c058d385f1e26f"],["p","0dcfcaac3d6f6796f7bc300a7d0d3b71bad1457f4e6b72f9cf490e1e55767be4"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","410adfbdceb593f7c093a75d01ff0e79bc4767987e30d776b836e898583495fc"],["p","278be33c14240980b132ba9d665ed9c9ee5a91ef2a046f151a1fc45c5c67f928"],["p","264d4029ef7c806919bd40f751c8158671039b4226a0916081d7ca158ab528f2"],["p","83c6e985c28d7dfb9b51eb209f82af91c8a8f6f322d84ca75453479916446f86"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","813c2662366a12f6337b951c048552fd3c4894e403cab701634dcd803786dc09"],["p","9356d008ab226ab6b08ab3c73900546b2836c48c7527f0e5332c09201a3e6dc8"],["p","cb0f973f96e28c12890afe39c2c84c54e12758b2ed53d3b150820bff66331530"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d"],["p","d7a4345c3ead1ea7a34bd6aae43c63cbd81941d9ba019fe972843e5ce78e3187"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","b286cdad6f9db7f1641139fc9ab69c8f2b36e25608206dfec856ef10ee4e8091"],["p","0959538a1d0ed66b471def67bcf0651b3a5654eaf032144a9df4c343eff675da"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","99562ddb32ac3e3378919a943e861cb999e80583efc7c70a42bba3e9ebbfc579"],["p","cc97551f4c883c9d2f027d95f76eb50448865b5f174ad0c46368fad7c7a3c8f1"],["p","f9497235341110289f24d4bdd45a9197c6fecfcd85249147366410453073bf1c"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","21335073401a310cc9179fe3a77e9666710cfdf630dfd840f972c183a244b1ad"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"]]}] +[14:17:13.312] RECV nos.lol:443: 8506a50","tags":[["p","06639a386c9c1014217622ccbcf40908 +[14:17:15.012] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:15.012] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:15.012] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:15.012] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:15.164] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:15.225] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:15.315] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:15.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:15.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:15.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:15.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:15.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:15.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:15.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🎯 Darts | Players Championship 30:\n\nMax Hopp kam als bester Deutscher ins Achtelfinale. Musste sich dort aber Chris Dobey geschlagen geben. Der Niederländer Wessel Nijman gewinnt das Turnier am Ende.\nEs waren erneut 11 Spieler aus Deutschland beim Turnier vertreten.","created_at":1759428967,"id":"ec47b8fb3bcb2eae1906bd258d0e2a22fe9f94e1313d21844a584c5599457d67","kind":1,"pubkey":"380313079a4be7bac409a83a48dc6aa3bd2eba0691c50f4a6c457bc5d7a64ee8","sig":"d44a21380409c555feea017445b7a06f2ef9a51d340f4a6921299e0a2b0db9aa950c403b6afea5f97627c8ec0ede27b5cf584f3b2d34123f8a65c6f716478e65","tags":[]}] +[14:17:15.800] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:15.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:15.921] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:15.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:16.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.103] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.224] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.284] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.345] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:16.405] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:16.466] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:16.889] RECV nos.lol:443: 192106","tags":[["p","884fff79db003eb8c7991c9ecfe00844e33b9417fcea0d10ccc215c739dbc69f"],["p","811 +[14:17:16.950] RECV nos.lol:443: f0075217a20b0cfe732f24189776b7e8c171d260f60d121e9f0 +[14:17:19.431] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:19.431] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:19.431] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:19.431] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:19.582] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:19.643] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:19.704] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:19.764] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:19.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:19.885] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:19.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:20.006] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:20.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:20.127] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"当時は飲み物も食べ物もなかったから、あればあるだけ飲み食いしちゃうのはどうしようもないよ","created_at":1759428977,"id":"c8d9f107e3e056de2efb3e93656ab088efe8aafe1fd6f36e4ed692ea67a0dc8d","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"352112652b2940a2a26654a28b088fd5894f279f60ca75bca4c6793e9f90a56f55890351c8b2418e0a5ae5c7e214c6bb270b821c0afbac0a3ac2d9d0fdbf9762","tags":[]}] +[14:17:20.187] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:20.248] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.309] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:20.369] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:20.430] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.490] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.551] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.611] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.672] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.732] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:20.793] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:20.853] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:21.277] RECV nos.lol:443: 192106","tags":[["p","884fff79db003eb8c7991c9ecfe00844e33b9417fcea0d10ccc215c739dbc69f"],["p","811 +[14:17:21.337] RECV nos.lol:443: f0075217a20b0cfe732f24189776b7e8c171d260f60d121e9f0 +[14:17:23.666] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:23.667] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:23.667] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:23.667] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:23.819] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:23.879] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:23.940] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:24.001] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:24.061] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:24.122] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:24.183] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:24.243] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:24.304] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:24.364] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"神楽坂のオシャ路地散歩してると急に理科大キャンパスが現れるらしくて、ずるいなって思った","created_at":1759428978,"id":"7dc6eb8cddc384d5b4a109a6b4bc7828fd3aa6aca4db52002699632bc6dd33f1","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2aa24a11853a521cb46ad74838e1977683fe2fca4244aad51487c746459191b4d8a1368e4cabdb3d8b232d055fed1b88fc9a0fde01225565054ea00a9d6b44c9","tags":[]}] +[14:17:24.425] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:24.485] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.546] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:24.606] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:24.667] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.727] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.788] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.848] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.909] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:24.969] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:25.030] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Rational Review News Digest\",\"about\":\"The freedom movement's daily newspaper since 1991\",\"picture\":\"https://social.freetalklive.com/system/accounts/avatars/000/029/681/original/def416f92727a5e6.jpg\",\"banner\":\"https://social.freetalklive.com/system/accounts/headers/000/029/681/original/6be23d7eece92e73.jpg\",\"nip05\":\"rationalreviewnewsdigest@social-freetalklive-com.mostr.pub\",\"fields\":[]}","created_at":1759428880,"id":"6cf53817ae6ffcfaca56e4a4fb769940d2f0c1b9e957ad0d1862de71a9b96a63","kind":0,"pubkey":"4d7b884049a25fcaf82473f2a5d81ae48c0e225cbfa69f88545c8b17845d7a54","sig":"8e12fadb399c0ea1a2fe37700ad90f5a5e940541bf2493a4c92d663bcde2d32c87db600603bc93df7fbff850dcde80a5ea0cbe34db74ddd1d214722758ed5567","tags":[["proxy","https://social.freetalklive.com/users/rationalreviewnewsdigest","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:25.090] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:25.513] RECV nos.lol:443: 192106","tags":[["p","884fff79db003eb8c7991c9ecfe00844e33b9417fcea0d10ccc215c739dbc69f"],["p","811 +[14:17:25.573] RECV nos.lol:443: f0075217a20b0cfe732f24189776b7e8c171d260f60d121e9f0 +[14:17:27.906] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:27.906] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:27.906] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:27.906] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:28.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:28.120] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:28.180] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:28.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:28.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:28.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:28.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:28.483] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:28.543] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1/2 trans 1/2 bobs 😂","created_at":1759428999,"id":"f7ba7abe934e48fe63d99af5991b288c919180027bc94e5f8958212cf16745c9","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fa1dff2315dd25dc35bb2a35b5b0ac77199cbe726bfae85520dedc6f2be8da37de90a7ddebc8d16e9126579600f0e4195560faf96ad4a566b96c7dc5e24c9311","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","wss://nos.lol","root"],["e","d8a3200c2966cbfe40e7ad455eac0429318c236cbcbb60cde25deb5429d2d65d","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","66769797f230b3d999575f9c216661be2ee891921083aed42d09ec766812a1cd"]]}] +[14:17:28.604] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ukraine’s Flamingo Cruise Missile: From Flashy Wunderwaffe to Flop\n\nFrom Sputnik\n\nTouted as a deadly strategic ‘gamechanger’ when it was first unveiled in August, the Flamingo has not only failed to live up to expectations, but threatens to become Ukraine’s next extinct weapons platform.\n\nOct 2nd 2025 2:01pm EDT\n\nSource Link: https://sputnikglobe.com/20251002/ukraines-flamingo-cruise-missile-from-flashy-wunderwaffe-to-flop-1122899562.html\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044380","created_at":1759428983,"id":"bf32804f87e633ee4db2918bacb86c52b6586379ed539be82493e6f92ba59a08","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"fe22cdfeba8add32efe3042695ec40c9c57d0dde3e42e045e4e88c95c251d3af11cb50f59f41c5742bafb2f845ae55b68c51f27fd8b07cebcf3dd7225546412d","tags":[]}] +[14:17:28.664] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:28.725] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:28.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:28.846] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:28.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:28.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.028] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.088] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.149] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:29.270] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:29.330] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:30.176] RECV nos.lol:443: 75c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","1 +[14:17:30.478] RECV nos.lol:443: 80d6709e42a20428fd381f89ef8d63db"],["p","2355757c6ec5 +[14:17:30.659] RECV nos.lol:443: ecb3f28d54adc14e6e01d016a82986fe153b"],["p","175f568 +[14:17:30.962] RECV nos.lol:443: 06968d8a6459559c249f322fa73464a7"],["p","b7996c183e036df +[14:17:31.932] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:31.932] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:31.932] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:31.932] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:32.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:32.145] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:32.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:32.231] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:32.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:32.352] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:32.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:32.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:32.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:32.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"お楽しめない会になっちゃう","created_at":1759429011,"id":"9f4b6831e628cbc631d250bfe72372381bca8bf7e5162de6763b335638f1000e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"558228222ed71fb052c6f24e6eae88eaecddca42731bc3146beffc223bfaf061d89da5bf576b81e3a78f727ecdbd95f00564a32c738280d2372b7fb029e6544d","tags":[]}] +[14:17:32.654] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:32.715] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:32.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:32.836] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:32.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:32.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.200] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:33.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:33.321] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:34.167] RECV nos.lol:443: 75c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","1 +[14:17:34.469] RECV nos.lol:443: 80d6709e42a20428fd381f89ef8d63db"],["p","2355757c6ec5 +[14:17:34.651] RECV nos.lol:443: ecb3f28d54adc14e6e01d016a82986fe153b"],["p","175f568 +[14:17:34.953] RECV nos.lol:443: 06968d8a6459559c249f322fa73464a7"],["p","b7996c183e036df +[14:17:35.929] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:35.929] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:35.929] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:35.929] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:36.080] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:36.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:36.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:36.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:36.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:36.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:36.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:36.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:36.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:36.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Are you sending this message from the boat? \n\n","created_at":1759429013,"id":"e10f5cb3308eafed3138f27e2fe8022a8b80659682050de2d406753251766db5","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"26aea37d06bea586c99f79b750cf0bc66d44592c2502a7f6796aec3af854044a8101743717fcdc531d1ddc9dc78ea0e22c72a45749aae15e7a38d64e9958b090","tags":[["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:17:36.686] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:36.746] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:36.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:36.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:36.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:36.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.136] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.196] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:37.257] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"A humble seeker wandering the vast expanse of truth, wherever it may dwell. A quiet sat stacker, devoted to the pursuit of wisdom, the harmony of sound money, the vitality of sound health, and the clarity of a sound mind. Guided in the Way, the eternal Light of Truth, for I believe that all truth, in its infinite forms, is but a reflection of the divine.\",\"lud16\":\"fastwalrus18@primal.net\",\"display_name\":\"Chad Jackson\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428890,"id":"d31b1847bcc772e1e811bb467b5029a292f7e65589aace975f0cc88b69c30dbc","kind":0,"pubkey":"1cf3910e4e84e4c05a82f426e4bbed8138d9ec39cf4b77025eb1eb26551980d6","sig":"23703e1f8b775ea4ae33e1b99204c3b324f8986c1263b9bcfca54d9b3f42447ea5ec7bccbabf4018f22921fc5fd4dab6209220eb8fc708ca6cdb93919cfb0968","tags":[]}] +[14:17:37.317] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:38.163] RECV nos.lol:443: 75c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","1 +[14:17:38.465] RECV nos.lol:443: 80d6709e42a20428fd381f89ef8d63db"],["p","2355757c6ec5 +[14:17:38.646] RECV nos.lol:443: ecb3f28d54adc14e6e01d016a82986fe153b"],["p","175f568 +[14:17:38.948] RECV nos.lol:443: 06968d8a6459559c249f322fa73464a7"],["p","b7996c183e036df +[14:17:39.920] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:39.920] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:39.920] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:39.920] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:40.071] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:40.132] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:40.193] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:40.253] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:40.314] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:40.374] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:40.435] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:40.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:40.556] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:40.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:40.677] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:40.737] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:40.798] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:40.859] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:40.919] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:40.980] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:41.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.161] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:41.343] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:42.154] RECV nos.lol:443: 75c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","1 +[14:17:42.456] RECV nos.lol:443: 80d6709e42a20428fd381f89ef8d63db"],["p","2355757c6ec5 +[14:17:42.637] RECV nos.lol:443: ecb3f28d54adc14e6e01d016a82986fe153b"],["p","175f568 +[14:17:42.939] RECV nos.lol:443: 06968d8a6459559c249f322fa73464a7"],["p","b7996c183e036df +[14:17:43.915] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:43.915] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:43.915] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:43.915] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:44.067] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:44.127] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:44.187] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:44.248] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:44.309] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:44.369] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:44.429] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:44.490] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:44.550] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Then suddenly ","created_at":1759429027,"id":"1200b11ef7bbf66439e12b59fb932e0be6b157285f2b4d836fb2ae8cb34d19c7","kind":1,"pubkey":"f5c7f59077d030f94bc03ab7be1a0ef0c1fce1a3f9f5fa2b8b0a5db96295890c","sig":"e9e96171ac2123a6526a3505525fdeeac5e7be044fecc1c5348b563566ec528abd8a7a63bf9621331b75c6e1d005dfa733cf35fdd2c4ce198c35c79c4102d2d2","tags":[["e","d3657ffbc187da90110421c3d2eeeaf69e212c4b33ff42939291e9513a0524f4","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:17:44.611] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Die mentale Blockade ist wirklich gigantisch bei den Tradfi Experten.\nStrategy hat eine Verschuldung von ca. 10 Prozent und sitzt auf 77 Milliarden Dollar Gegenwert an Kapital.\nOhja sie stehen wirklich kurz vor dem Zusammenbruch, genau wie bei den Tesla Hatern. Fällt die Aktie mal ein halbes Jahr kommen die Bären aus ihren Löchern gekrochen.\n\nBuy spot bitcoin. \n\nhttps://blossom.primal.net/4916b79304cf9f29c7b05c52351b6cb455926d146f8ddbc3177cf76e72f3adcb.jpg","created_at":1759429017,"id":"9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"d0b5cabe6f1ec89be40cac0683ad74405cf7fbf4a085c4c4e625804e75256fa46d1d8f134ef7a4232a0021a4d6f1c839a68255bb321b74166261b11152dc4483","tags":[]}] +[14:17:44.671] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:44.732] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:44.792] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:44.853] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:44.914] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:44.974] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:45.035] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.156] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.277] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:45.337] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:46.244] RECV nos.lol:443: 86e1bb9ccdf2cf0f4ebeaccb"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11 +[14:17:47.518] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:47.519] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:47.519] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:47.519] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:47.670] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif","created_at":1759429065,"id":"d5f6473df92d56f5660aeca23a941c61e62faee14630bb5b819de80df7883730","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"04a7b60d42baff51f1ba96ea31ccc4d8c65eb7b00dd7cfbefff20fc8ef48e7bbef6dde8da6fdd47da03c183afcf2ce44ab4afad5f33dec420bcfc186eab4dc25","tags":[["alt","A short note: https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carre..."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","wss://relay.damus.io/","reply","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","wss://chadf.nostr1.com/"],["r","https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif"]]}] +[14:17:47.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Very cool, have been looking for this exact thing. Would love to see the app in nostr:nprofile1qqs83nn04fezvsu89p8xg7axjwye2u67errat3dx2um725fs7qnrqlgpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhs79prlk and Nostr login added for sync.","created_at":1759429065,"id":"a90f660df1eec69d7cf933bc6f8d8f3b11cac236f99acb89d281a5a3c010bacc","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"f07f16d909cf36ea3d05a81e7569cef2daf36b42802c69437cb0662dddfd0662225a26554973d52b152f64615364a056ab13567765d6c1818f3c787f40412642","tags":[["alt","A short note: Very cool, have been looking for this exact thing...."],["e","eb36520ff53038b02f7ce86c8f00e4548c2a07376d463010829ba9695609e3c5","wss://premium.primal.net/","root","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"]]}] +[14:17:47.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:47.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:47.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:47.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:47.983] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:48.043] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:48.104] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:48.164] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:48.226] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:48.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:48.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:48.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.770] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:48.891] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:49.375] RECV nos.lol:443: 55767be4"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","1be9326168f +[14:17:49.435] RECV nos.lol:443: 4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1 +[14:17:51.033] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:51.033] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:51.033] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:51.033] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:51.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif","created_at":1759429065,"id":"d5f6473df92d56f5660aeca23a941c61e62faee14630bb5b819de80df7883730","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"04a7b60d42baff51f1ba96ea31ccc4d8c65eb7b00dd7cfbefff20fc8ef48e7bbef6dde8da6fdd47da03c183afcf2ce44ab4afad5f33dec420bcfc186eab4dc25","tags":[["alt","A short note: https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carre..."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","wss://relay.damus.io/","reply","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","wss://chadf.nostr1.com/"],["r","https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif"]]}] +[14:17:51.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Very cool, have been looking for this exact thing. Would love to see the app in nostr:nprofile1qqs83nn04fezvsu89p8xg7axjwye2u67errat3dx2um725fs7qnrqlgpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhs79prlk and Nostr login added for sync.","created_at":1759429065,"id":"a90f660df1eec69d7cf933bc6f8d8f3b11cac236f99acb89d281a5a3c010bacc","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"f07f16d909cf36ea3d05a81e7569cef2daf36b42802c69437cb0662dddfd0662225a26554973d52b152f64615364a056ab13567765d6c1818f3c787f40412642","tags":[["alt","A short note: Very cool, have been looking for this exact thing...."],["e","eb36520ff53038b02f7ce86c8f00e4548c2a07376d463010829ba9695609e3c5","wss://premium.primal.net/","root","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"]]}] +[14:17:51.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:51.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:51.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:51.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:51.554] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:51.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:51.675] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:51.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:51.796] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:51.857] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:51.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:51.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:52.099] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:52.124] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.185] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.245] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.306] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.366] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:52.427] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:52.910] RECV nos.lol:443: 55767be4"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","1be9326168f +[14:17:52.970] RECV nos.lol:443: 4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1 +[14:17:55.591] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:55.591] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:55.591] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:55.592] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:55.744] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif","created_at":1759429065,"id":"d5f6473df92d56f5660aeca23a941c61e62faee14630bb5b819de80df7883730","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"04a7b60d42baff51f1ba96ea31ccc4d8c65eb7b00dd7cfbefff20fc8ef48e7bbef6dde8da6fdd47da03c183afcf2ce44ab4afad5f33dec420bcfc186eab4dc25","tags":[["alt","A short note: https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carre..."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","wss://relay.damus.io/","reply","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","wss://chadf.nostr1.com/"],["r","https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif"]]}] +[14:17:55.805] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Very cool, have been looking for this exact thing. Would love to see the app in nostr:nprofile1qqs83nn04fezvsu89p8xg7axjwye2u67errat3dx2um725fs7qnrqlgpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhs79prlk and Nostr login added for sync.","created_at":1759429065,"id":"a90f660df1eec69d7cf933bc6f8d8f3b11cac236f99acb89d281a5a3c010bacc","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"f07f16d909cf36ea3d05a81e7569cef2daf36b42802c69437cb0662dddfd0662225a26554973d52b152f64615364a056ab13567765d6c1818f3c787f40412642","tags":[["alt","A short note: Very cool, have been looking for this exact thing...."],["e","eb36520ff53038b02f7ce86c8f00e4548c2a07376d463010829ba9695609e3c5","wss://premium.primal.net/","root","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"]]}] +[14:17:55.865] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:55.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:55.986] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:56.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:56.107] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:56.168] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:56.228] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:56.289] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:56.349] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:56.410] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Martijn Braam\",\"about\":\"Opensource software developer for OpenSwitcher. Sometimes makes some random hardware.\\n\\nSlowly getting closer to being a full time FOSS developer :D\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/000/061/783/original/e8cc9a5332e74811.jpg\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/000/061/783/original/86bb5220a349cf5a.jpg\",\"nip05\":\"martijnbraam@fosstodon-org.mostr.pub\",\"fields\":[[\"Blog\",\"https://blog.brixit.nl/\"],[\"Patreon\",\"https://www.patreon.com/martijnbraam\"],[\"Liberapay\",\"https://liberapay.com/MartijnBraam/\"],[\"Peertube\",\"https://spacepub.space/c/martijnbraam/videos\"]]}","created_at":1759429055,"id":"650e770c1972ad5c362c75a1b7f362103371fbe008b1bd066f7db80a1de24aed","kind":0,"pubkey":"579852afc54f2f4b992d5c48441d63f6545c530a7371764b6e67325d585ea6a1","sig":"f3cf7c0e189465581eb4aa32593cfb11e385d043a009bdb4ca0157d6442006416743ae6f4c872bfac324d3802d295a470852645fb38f103963c8c3d74827457a","tags":[["proxy","https://fosstodon.org/users/martijnbraam","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Roland Häder🇩🇪\",\"about\":\"I love free software, freedom, decentralization and no capitalism. I write with a QWERTZ keyboard but have setup US layout. #BlacklistIsNoRacism #heterosexual #EndFGM #ProDashcam #IloveK1 #SayNoToVVS #SayNoToGenderWoowoo. #fedi22 #IStandWithJKRowling #IStandWithJordanPeterson #IStandWithRileyGaines #SayNoToWoke #IStandWithMaya #StopErasingWomen #ManNotCis #StraightDontFuckWithTrans\",\"picture\":\"https://f.haeder.net/photo/profile/roland.png?ts=1748778962\",\"nip05\":\"roland@f-haeder-net.mostr.pub\",\"fields\":[[\"Factorio\",\"mods.factorio.com/user/roland7…\"],[\"gitlab\",\"gitlab.com/Quix0r\"],[\"Locals (Quix0r)\",\"jameson.locals.com\"],[\"Pronoun\",\"vaginal commander\"],[\"Hometown\",\"Georgsmarienhütte\"],[\"Sex\",\"Male\"],[\"Political views\",\"Center? Hmm: gegenstimme.tv/w/gcCyFYxYUDG5q…\"],[\"Religious views\",\"Atheist\"],[\"Likes\",\"Food: #vegetarian (90%), #vegan (10%)\"],[\"Dislikes\",\"Smoking/drugs, I stopped eating meat since July 2019. Alcohol (even mild) seem to be more disliked than liked. I don't like the taste.\"],[\"Title / description\",\"Administrator of this instance\"],[\"Musical interests\",\"Techno, 90' Dancefloor 90', Psychedelic-/Goa-Trance\"],[\"Books, literature\",\"Documentation books ... \"],[\"Television\",\"X-Files, Knight Rider, Dune (movie), lots of movies where Jason Statham is involved. Maybe something more I forgot?\"],[\"Hobbies/Interests\",\"Programming PHP/Java SE/EE, playing computer games\"],[\"Love / romance\",\"I'm in love with my wife for a longer time now.\"],[\"Work / employment\",\"Unempoyed, not interested in home-office.\"],[\"School / education\",\"Middle school finished, first work training was electrician, then application developer.\"],[\"Contact information and Social Networks\",\"GS: social.mxchange.org/roland\"],[\"Sexuality\",\"Heterosexual (straight)\"],[\"Relationship type\",\"Monogamous\"],[\"OMEMO ID\",\"a7419c8edd4fe01c0b1bc79b3f3a5fbbb589b56098e55dacb02351d73d6e6232\"],[\"GNU Social\",\"social.mxchange.org/roland\"],[\"TwitchTV\",\"twitch.tv/quix0r\"],[\"Steam\",\"steamcommunity.com/id/quix0r/\"],[\"GOG\",\"gog.com/u/Quix0r\"],[\"git.friendi.ca\",\"git.friendi.ca/roland\"],[\"itch.io profile\",\"itch.io/profile/quix0r\"],[\"Codeberg\",\"codeberg.org/roland77\"],[\"BKA.li repositories\",\"code.bka.li/roland77\"],[\"OBS Forum\",\"obsproject.com/forum/members/r…\"],[\"Rumble\",\"rumble.com/user/Quix0r\"],[\"voidpoint.io\",\"voidpoint.io/Quix0r\"]]}","created_at":1759429041,"id":"33e61b67499a154239bc1eca14a328fc775ff67b98339899e7904561a91aaf45","kind":0,"pubkey":"4bb8e4510271817909dcd6e725ef0c0fbdb1e057922fd32b057092af5b7fb39d","sig":"7a6dcd0994f9a9f846898e5906f83334b8e3bc2ca4056d7dc4954990e7734957546f6ff77089afeebf796fac1b97045595a38761e8c4c2ad03095fe4051803d7","tags":[["proxy","https://f.haeder.net/profile/roland","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.531] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Monika\",\"about\":\"Autorin. Podcasterin. Leidenschaft für Fotografie, fürs Selbermachen, Reisen & Kochen. Geb. bei 326 ppm CO₂. \\nhttp://absolutanalog.de , http://monismotivklingel.de , http://fiberthermometer.de\\n\\nAvatar made by @anhdres\",\"picture\":\"https://assets.chaos.social/accounts/avatars/000/081/110/original/8bc94cd82624640c.jpeg\",\"banner\":\"https://assets.chaos.social/accounts/headers/000/081/110/original/6b71469f98a3b928.jpeg\",\"nip05\":\"nahlinse@chaos-social.mostr.pub\",\"fields\":[[\"Pronomen\",\"sie/ihr | she/her\"],[\"Privilegien\",\"weiß, cis, abled\"],[\"Beliefs\",\"Trans rights are human rights. 🏳️‍⚧️\\nLove is love 🌈 \\nScience is real 🧪\"]]}","created_at":1759429023,"id":"33257359179a46be05baf28a9cf910d7ea71e247f4685a0179aebce2084247c0","kind":0,"pubkey":"a59d4f9b318bd0750350bea6018ca0d2ca0f4514d083bdfb08cd68d84ae1b6b6","sig":"a728b9fba163c0bfa356975bf83cacf6fa6be158a30e9577bc52af1951f95a46e52d60da5a0a57b2cb66119342b0e8064cd20322f15e6fd8631304d8bd539a2d","tags":[["proxy","https://chaos.social/users/nahlinse","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://postimg.cc/Fd5sjtg7/04c4a96f\"}","created_at":1759429005,"id":"c0d84680e1b493eb9ca1cc1d4585c835256089f0ec417d0009e637ad7ef118c0","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"cc2dd8fcecc54e1dc467153b6c389bdeb7a2ff232de790b69656f36745b652431d31625432fee6e980e607a8fcfb76d95d0fbb3a93641ff8e2c7b62934032866","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://postimg.cc/Fd5sjtg7/04c4a96f"]]}] +[14:17:56.652] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Xz\",\"display_name\":\"Artem\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759428968,"id":"3fa629666a9d3e124d9388d8aa7c8373f7c9353745d99bf2f793401d9aa9b762","kind":0,"pubkey":"585d7f9749896e2d2fc1191304580e22d056f645b00b48d8f296e1009a940851","sig":"b39b3f6e41d30870e57aec67f9faf0f8ed5983326637b4d0e3ef845de908a016e53848c702140cbf5d201be64033a03db8d3e1ef894ff2fe4a041917c697879f","tags":[]}] +[14:17:56.713] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428948,"id":"42c10b0ef985fdcf65ceb6697742d2c8cd6d5914b99534eb0030439711e4b7c1","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"59eed5d2873fd6b4c085c24a8b9106981c2a19646a15760e6e3359380f4c78f13510f5dedfd3b86c5d8391238fc596e58e1206a572e1fae80b5c38fcbee0b932","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.773] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428928,"id":"27a0e4dc8d71b7b39aea7a8736fe7f5880d277e72e46970be168de415dda018a","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"93a1886846a887008c8699ddb7690677415f2740555a9db3b28104312ab1f8f51fc77149a13b8770402e85b306c6c44983316d627cd46933b53cf64d58ce45fc","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.834] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"db3c04ad195ffff872bb5e06853877b1d677a90b38debd9f9d803cab22dfc545","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"108b931aafa49d978a8d80697c05105595f2da7d923479bd8ea0fa667c67ee41f349a991f52782d9ea801d32f0fe2f1b21c97993a926c288338210d84c12e650","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.895] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428927,"id":"b39fc9c17b20f07fdb3b0b93cd0e69576018c2e07b8d7b1e003c6cad0750add7","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"d9e0278a502df2992f9a460c9f71b805541faba9b6998853c51086830171b5b2b8abe52f3632c77d6db0193ae441c00aa0d63c8bd5f66f24dc980d0c66d9f7f0","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:56.955] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759428925,"id":"a119abe531d105fca4bba4a83ed3b129c189c517ae10c2f41b5b4c139f7a153b","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"5c11664e1f9c5bd4be04f87b30035d4ae4407be519786fb1492411d83a62d50589a2d66dcfb81e6d5e1b37e557f9f2310de509191c37f39703eda230543ebcf2","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:17:57.016] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:17:57.464] RECV nos.lol:443: .net\":{\"write\":true,\"read\":true},\"wss://nostr-pub.wellorder.net\":{\"write\":true,\"read\":true},\"wss +[14:17:58.379] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:17:58.379] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:17:58.379] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:17:58.379] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:17:58.532] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif","created_at":1759429065,"id":"d5f6473df92d56f5660aeca23a941c61e62faee14630bb5b819de80df7883730","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"04a7b60d42baff51f1ba96ea31ccc4d8c65eb7b00dd7cfbefff20fc8ef48e7bbef6dde8da6fdd47da03c183afcf2ce44ab4afad5f33dec420bcfc186eab4dc25","tags":[["alt","A short note: https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carre..."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","56be3830f989420f7ef5130c86d8e29665810e96e8e6d3fcdf8c13b3c45b72ec","wss://relay.damus.io/","reply","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","wss://chadf.nostr1.com/"],["r","https://media.tenor.com/VEsTykf0RaQAAAAC/jim-carrey-dumb-and-dumber.gif"]]}] +[14:17:58.592] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Very cool, have been looking for this exact thing. Would love to see the app in nostr:nprofile1qqs83nn04fezvsu89p8xg7axjwye2u67errat3dx2um725fs7qnrqlgpz4mhxue69uhhyetvv9ujuerpd46hxtnfduhs79prlk and Nostr login added for sync.","created_at":1759429065,"id":"a90f660df1eec69d7cf933bc6f8d8f3b11cac236f99acb89d281a5a3c010bacc","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"f07f16d909cf36ea3d05a81e7569cef2daf36b42802c69437cb0662dddfd0662225a26554973d52b152f64615364a056ab13567765d6c1818f3c787f40412642","tags":[["alt","A short note: Very cool, have been looking for this exact thing...."],["e","eb36520ff53038b02f7ce86c8f00e4548c2a07376d463010829ba9695609e3c5","wss://premium.primal.net/","root","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9","wss://relay.primal.net/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/"]]}] +[14:17:58.683] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"どっちボールですか?(大爆笑)","created_at":1759429059,"id":"a116bdde6bfe6efa79e90f651755d1cfa243418b3170bf4e4fdb55919da548a9","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"ed3b10708a86c10485dd8c042be74c937a793d25c9e4da74dd93087e940ecc9004911f019b5cfa7d15bea56d6d31cdd5b92f252157a69cc88d3239b5bf23139f","tags":[]}] +[14:17:58.744] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Gunstr \nhttps://64.media.tumblr.com/763e3f6787c1541984cf2ae5f24202a8/tumblr_opc34vqUmt1u8a8ydo1_500.jpg \n#army #gun #shotgun #huntress #pistol #knife #knives #soldier #warrior #girls","created_at":1759429052,"id":"e9605e9b843e32b756a7cd40aefe97197cfbfce1a86fd638962e1f0e6a33455f","kind":1,"pubkey":"ac5c59bc3994883bdcd6d8623e6476f0e05ee653997269cc216027859afde5b2","sig":"9023d228bdd25ee9f798cf1b2df6716fd39a8c9b10f95b90838b43bb4e64e45067edeb8b4283460fb71ce6fe728aa5670c35ea437b61512254be007c8dda1c9e","tags":[]}] +[14:17:58.804] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッジボール、小4のとき急にできるようになって、小6あたりでまたダメになった","created_at":1759429051,"id":"c7d4f85b24e25eca175a1a4f3c955d997f915273e31b5d853af04ca325921aef","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c0ed9d29928efd6c699809c389bb0b1745ee8959b524f86f07d46fcd969204cd9909e5eb9f269cfeda4a95e38829df9ddf4cba68f79ba4141e9167b575165198","tags":[]}] +[14:17:58.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Australian firm Fitell Corp bought $1.5M worth of PUMP tokens (Solana-based Pumpfun platform) – 216.8M tokens! 🇦🇺 Fitell is shifting from fitness e-commerce to a digital asset treasury & may rebrand as Solana Australia Corp. They also secured $10M for SOL. (TheBlock)\n\n#crypto #blockchain #news ","created_at":1759429048,"id":"4d8ec3953bede23a53caa15e46ea3c2a0c37c2b17a7cd7e9e9eaeda04f8b1d3f","kind":1,"pubkey":"c215990326b98e7fff0ccbc865c159332802d9fd39ffa281ec0f8949bd2a3113","sig":"80dc159b23692f2104aee2d5d1ff0f14d0a403f6159ca760b2d16321ed68c2da4a1a97e3b5e767b72d5ba311208937b23507dc42c31ab9f96d16d7cb07f2ae5c","tags":[]}] +[14:17:58.925] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"友達いないからドッジボールやった記憶がないし、ドッヂボールっていうのも初めて知った","created_at":1759429045,"id":"ff8083e533d78d8e00baaba2f0b8787b695117c02b2d879b495af8e1abea16da","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"93dce48442f77c20349fa32947dd443f0c0453970b55a45edc4dc2215583b19491e76bd4ada89ee698cec7ab5cb88cc31b91d378dccce27ec244bbe8c7e39151","tags":[]}] +[14:17:58.985] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドッヂボールは休み時間にできることじゃん","created_at":1759429042,"id":"5967c78e7c6ac09e357aba86de4472c6059c7bb64da9127494737cb9ec0d9c63","kind":1,"pubkey":"f240c9c2510c3c63d3525ad11ed1307741d0dffecdeb3e5cd7da12396c0c0a86","sig":"34025b716da5858d3cccfe8418146a28584c4aa55e2d2bd1ba383d39e60ee7ecb08bcffdec3f433448048967090521b2b87578bc22086bfb1ba3b5ccfaf6edf0","tags":[]}] +[14:17:59.046] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://primal.net/e/nevent1qqszqp0sdynnl20c6sajhk2k9spymkwqeclt7f8cxpwesmvss95sejs4jslqt \n\n","created_at":1759429036,"id":"09ed231d2541098a0721bc0b0c94244ea4ef1f7e5b9f088e7c87c652152f659c","kind":1,"pubkey":"668ac389d67f4f4be637f7e567c9054392c080db7c0b257264701ab4048166ff","sig":"aa0b3ce75805f6aaddfc30ef852ff0b5b274f2610a3639420cd08b76ae5e863492dcae99d2f1b51e97ee066e00069aaf38eacea2b39f638b4ff2ccc7ee9b4e1d","tags":[["e","2005f069273fa9f8d43b2bd9562c024dd9c0ce3ebf24f8305d986d9081690cca","wss://relay.damus.io","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","wss://nostr.einundzwanzig.space/","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","wss://relay.primal.net"],["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://relay.primal.net","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"]]}] +[14:17:59.106] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Streaming: Capsule - 022\n1. Flavien Berger - Mars balnéaire\n2. Flavien Berger - Océan rouge\n3. Radiohead - The National Anthem\n4. ESG - Insane (Tambourine Mix)\n5. TodoTodo - Autogas\n6. MAN 2 MAN - Male Stripper\n7. Laurence Pike - Distant Early Warning\n\nhttps://harmonique.one/shows/capsule/episodes/022 #music #tunestr","created_at":1759429030,"id":"f9cada9cd079d635baf1a73ff96be76a860fbf443e0c2d8f219058db929d0d90","kind":1,"pubkey":"f3f5992cdb39e6108768d543fbd384a11efc3713085617ee28932ebb1614e07c","sig":"2ee481a20b9f8d9c945496b73ef7fc6d001614b8da998879bb40332bf7b3df88bc8b7c228d80293d51ddfa9956fd58d8c5ee05703d5daaa64aaab896a4bc6711","tags":[]}] +[14:17:59.167] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:17:59.227] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw\",\"name\":\"hub\",\"about\":\"Bitcoin is Nice 🟠\",\"display_name\":\"hub\",\"lud16\":\"hubsats@walletofsatoshi.com\",\"banner\":\"https://i.postimg.cc/Ssj2bkn7/1500x500-3.jpg\"}","created_at":1759429077,"id":"33114b4cabe1be88448c1cb80a54620a214b9d49035a3625eeb749203492e64e","kind":0,"pubkey":"b545acb04bbbc96ab2c4f259d55fb1a9751cd6ce6319e87389ce3a5b529a50f9","sig":"5c57be1e665aa5fc4a459d67609fb0304a6233e5d5d966c0ab449a885e01c21b940e9b79a63c821bccbb7a317a6a7c824a68937d0fe586ff16a6a6dd6489ec9f","tags":[["client","coracle"],["alt","User profile for hub"],["name","hub"],["display_name","hub"],["picture","https://imgproxy.snort.social/pXHEw0JIkK2gtB4okgl-fDDCEiEj9GWOBA6B5FB3wMk//aHR0cHM6Ly9pbWFnZS5ub3N0ci5idWlsZC8yYTQwYjY4ODViOTVlM2RmOTgxOTRkYjZkZWU5YTI2NDkzZTkxZTRkNTIwMTk2YzdlYzdkNWEzZTBhMTgyMmI0LmpwZw"],["about","Bitcoin is Nice 🟠"],["lud16","hubsats@walletofsatoshi.com"],["banner","https://i.postimg.cc/Ssj2bkn7/1500x500-3.jpg"]]}] +[14:17:59.288] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"myrmepropagandist\",\"about\":\"pro-ant propaganda, building electronics, writing sci-fi teaching mathematics & CS. I live in NYC.🎖️(< :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:24:56.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:24:57.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:24:57.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:24:57.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:24:57.155] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:24:57.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:24:57.277] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"865beb0554758c65eec1c734d4acd1c1caa78195fd581dab3642a74e5a71e501","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"fa48426bffad191261b31dece16329d32429189a33fec216cf1e2305aed98157c8464bccc6cfa888a692dfe50f95c5d521700f6d32e8be9d8ebb29eea47e30bc","tags":[]}] +[14:24:57.337] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"5fb9220779943a4e159f48bfc78b4f6ac3da469bcd70d7cde4ce255461cc9021","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"52c644f6d5a23c41b579e73b39ef1bbab7b682da6bed235eb15e3bd50756b1e24b18f9a212180188edfdab8e4a254d458c727a259499bc8017841dcaa398ee6e","tags":[]}] +[14:24:57.398] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"4854c65247a2ab69ae730f91d9650c85a3475a001f2e5f8f8d9a69630d983a95","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"d5d3399e9c44258765fc6fb5e7e8566e6f3795bdd78e07f7d0b2f1aba4908ac9971ef915f2a94acaab92ffe56e1b1d86f74ac3c49a906ea892fd2d935bba924f","tags":[]}] +[14:24:57.458] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:24:57.519] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429464,"id":"11834c3d132c581134773ad35de235585e9415fe8ea0a67584ece79530c4d5b6","kind":3,"pubkey":"6123bc04893e8e27f13e9a432ae5b968579e78c4ab259574f74495db09258272","sig":"31015b057f0542e00d5ba6339bc0c3a98fcbd56ab493e0b436db77411272ea43cabe25e5761c9f1d4d372a0bc6386ad25feaf598c16de80ae90134828a3db5da","tags":[["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","66bd8fed3590f2299ef0128f58d67879289e6a99a660e83ead94feab7606fd17"],["p","92cbe5861cfc5213dd89f0a6f6084486f85e6f03cfeb70a13f455938116433b8"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","33bd77e5394520747faae1394a4af5fa47f404389676375b6dc7be865ed81452"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","fcb651724ab55affc1130fd4cbbc6e5fe1e20c2b09b85941ecf10b7487f3c4ed"],["p","de7ecd1e2976a6adb2ffa5f4db81a7d812c8bb6698aa00dcf1e76adb55efd645"],["p","9c199578de5aae3ae55e348d0fea56eab2f6db84bbcac64467642b7fa4314dbb"],["p","6c535d95a8659b234d5a0805034f5f0a67e3c0ceffcc459f61f680fe944424bf"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","1c31ccda2709fc6cf5db0a0b0873613e25646c4a944779dfb5e8d6cbbcd2ee1c"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","123afae7d187ba36d6ddcd97dbf4acc59aeffe243f782592ff8f25ed579df306"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32"],["p","77ec966fcd64f901152cad5dc7731c7c831fe22e02e3ae99ff14637e5a48ef9c"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","7fa56f5d6962ab1e3cd424e758c3002b8665f7b0d8dcee9fe9e288d7751ac194"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","c48b5cced5ada74db078df6b00fa53fc1139d73bf0ed16de325d52220211dbd5"],["p","626f5262765ba3130ebf9d3e778b3f44e3a843bb392e0bf99ada438b3fed4976"],["p","52921e1feee2b3c5093b193784e5a55a5191f4940725e3cb7a17592f1c37981b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","c1fc7771f5fa418fd3ac49221a18f19b42ccb7a663da8f04cbbf6c08c80d20b1"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","4eb88310d6b4ed95c6d66a395b3d3cf559b85faec8f7691dafd405a92e055d6d"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","6123bc04893e8e27f13e9a432ae5b968579e78c4ab259574f74495db09258272"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["t","homelab"],["p","d6149823c90c4865e4bc434a4be1a1ee8f72aabd8328dd059ba4f11f7633b0b6"],["p","dc350e074d1def1d9019df293378115ab9affd8e824e7cf432c409b860dd13ae"],["p","03adefb282cd0220c0f424fdd2eaea1b3537638dcbc8d1929f1749c3037f6b16"]]}] +[14:24:57.821] RECV nos.lol:443: 5542018e31e1a0","tags":[["p","9edd72eb23222c969379d90 +[14:24:58.487] RECV nos.lol:443: a6492ca6c9d5098d9e5ad27ee57468f9608e","wss://rel +[14:24:58.547] RECV nos.lol:443: .bullishbounty.com",""],["p","273a0967bc2b146f1416f556bf0b5b2fc31c72a2b73f07f345a5fde982f0eab3","wss://relay.bullishbount +[14:24:59.273] RECV nos.lol:443: ec230b587a334381e82bf9a02a184f2d068f8d","wss://r +[14:24:59.394] RECV nos.lol:443: .bullishbounty.com",""],["p","2bf3494d5c5f83ff94dc44c2d22bdea9f3387286a127407c21e4f075906ed51e","wss://relay.bullishbount +[14:25:00.493] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:00.493] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:00.493] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:00.493] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:00.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:00.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:00.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:00.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:00.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:01.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:01.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Impressive !!! \n\nhttps://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","created_at":1759429485,"id":"67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"853e81c8a48340facd559a2b95ef39dbaf1d35f8dd7a04da489b5287b8f4c112492680e3d6dac11d56ee44d1546ef3e26959f2894b4993ad4af05d7e45156969","tags":[["alt","A short note: Impressive !!! \n\nhttps://blossom.primal.net/2933c4..."],["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["e","d3207c6106613816e640b846516d0588cf6a473834e552d725b4ee26d80f2815"],["e","bc3d1686b43a48acebb4a90d66d9d37b7c08138f52d90a16d26f6028f19a60a1","wss://relay.damus.io/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"],["r","https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif"],["imeta","url https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","x 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","size 998241","m image/gif","dim 170x234","blurhash _B9@P0WCI:WVoLfjoM_LV@nio2WVofWU$mR+SebHoKWVo2J$axspjZa}jZW;wNa}W:bHjZWWo2NZa#oKoLayoLWVs;f6a}Woj[a|jtbHbHfQo1fQjaa}jZj[j[W;aya}f6","ox 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","alt "]]}] +[14:25:01.180] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📇⬇️ policy:\n\nand then russia can annex ukraine because ukraine \"stole russian money\" and claiming the land in ukraine is repayment. it puts the target on ukraine's back.... makes the problem between them and extracts the eu, and russia will wipe them off the map, and the eu will say ohhhhhh that's terrible, have another sanction. and everyone will move on. #emmanuelmacron \n#pravda \n\nhttps://apple.news/AxvRWYzGdSwW4dX_OYCycjA","created_at":1759429485,"id":"5696bc1ad6767a6af6c01c71111b4677618b4854f69e40398a8cea629479e337","kind":1,"pubkey":"1ea4ae8405ad5c6bd0dc35a0ac83e548c485142538e1e0c54ad40e5bb59a2ae8","sig":"ca1e1f61ef960792e7beaa4054e1586dc18e7c235f221b0d518df86e1f0b6ba064c8de21949aedd9fbfdb0f8a4cf40f4a6c7e8f02a47cb46b803d5c46019f9af","tags":[["e","ce0ff5b80154330c373103dfe38f819ccb93255e9b2c08bb8d577bf9ed79ebfd","","root"],["e","99f00fb9d916775dba72b32dbadbe1fa9638f58bef78c435b1a52fe3c1fac179","","reply"],["t","emmanuelmacron"],["t","pravda"],["r","https://apple.news/AxvRWYzGdSwW4dX_OYCycjA"]]}] +[14:25:01.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Congrats!!","created_at":1759429484,"id":"82f27d8e2e42ddaff39762eddd5fd202720f41bf0cf4292bdeccacdc48ac636c","kind":1,"pubkey":"a8171781fd9e90ede3ea44ddca5d3abf828fe8eedeb0f3abb0dd3e563562e1fc","sig":"66222df18e8546950157bfe7de774fd1ce005e7d6d4bcab11913c330ce8f4b6ea025183c7dea0bed8472eebdcbd79f6ce9033f9fb7219792cd7345624485afd9","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:25:01.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Youuuuu get it 😂","created_at":1759429478,"id":"54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"b9dec1670113e30f4ae9ac2b70202b9deccb4cfd06a0524b45fb346a2b1d3987eb41731a3fa1499393a156c122a7b7f67c25558e3a6a522babb6d8069c5e0e1f","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","ffeb789065d38c8969d2b03ba68aa5a0eac600ab2d84496fc29dce85951d42d1","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"]]}] +[14:25:01.361] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:01.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:01.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:01.543] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:01.604] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:01.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:01.725] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:01.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:25:01.846] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"865beb0554758c65eec1c734d4acd1c1caa78195fd581dab3642a74e5a71e501","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"fa48426bffad191261b31dece16329d32429189a33fec216cf1e2305aed98157c8464bccc6cfa888a692dfe50f95c5d521700f6d32e8be9d8ebb29eea47e30bc","tags":[]}] +[14:25:01.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"5fb9220779943a4e159f48bfc78b4f6ac3da469bcd70d7cde4ce255461cc9021","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"52c644f6d5a23c41b579e73b39ef1bbab7b682da6bed235eb15e3bd50756b1e24b18f9a212180188edfdab8e4a254d458c727a259499bc8017841dcaa398ee6e","tags":[]}] +[14:25:01.967] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"4854c65247a2ab69ae730f91d9650c85a3475a001f2e5f8f8d9a69630d983a95","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"d5d3399e9c44258765fc6fb5e7e8566e6f3795bdd78e07f7d0b2f1aba4908ac9971ef915f2a94acaab92ffe56e1b1d86f74ac3c49a906ea892fd2d935bba924f","tags":[]}] +[14:25:02.027] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:02.718] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:04.968] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:04.968] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:04.968] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:04.968] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:05.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:05.180] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:05.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:05.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:05.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:05.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:05.483] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:05.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:05.604] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Impressive !!! \n\nhttps://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","created_at":1759429485,"id":"67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"853e81c8a48340facd559a2b95ef39dbaf1d35f8dd7a04da489b5287b8f4c112492680e3d6dac11d56ee44d1546ef3e26959f2894b4993ad4af05d7e45156969","tags":[["alt","A short note: Impressive !!! \n\nhttps://blossom.primal.net/2933c4..."],["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["e","d3207c6106613816e640b846516d0588cf6a473834e552d725b4ee26d80f2815"],["e","bc3d1686b43a48acebb4a90d66d9d37b7c08138f52d90a16d26f6028f19a60a1","wss://relay.damus.io/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"],["r","https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif"],["imeta","url https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","x 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","size 998241","m image/gif","dim 170x234","blurhash _B9@P0WCI:WVoLfjoM_LV@nio2WVofWU$mR+SebHoKWVo2J$axspjZa}jZW;wNa}W:bHjZWWo2NZa#oKoLayoLWVs;f6a}Woj[a|jtbHbHfQo1fQjaa}jZj[j[W;aya}f6","ox 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","alt "]]}] +[14:25:05.665] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📇⬇️ policy:\n\nand then russia can annex ukraine because ukraine \"stole russian money\" and claiming the land in ukraine is repayment. it puts the target on ukraine's back.... makes the problem between them and extracts the eu, and russia will wipe them off the map, and the eu will say ohhhhhh that's terrible, have another sanction. and everyone will move on. #emmanuelmacron \n#pravda \n\nhttps://apple.news/AxvRWYzGdSwW4dX_OYCycjA","created_at":1759429485,"id":"5696bc1ad6767a6af6c01c71111b4677618b4854f69e40398a8cea629479e337","kind":1,"pubkey":"1ea4ae8405ad5c6bd0dc35a0ac83e548c485142538e1e0c54ad40e5bb59a2ae8","sig":"ca1e1f61ef960792e7beaa4054e1586dc18e7c235f221b0d518df86e1f0b6ba064c8de21949aedd9fbfdb0f8a4cf40f4a6c7e8f02a47cb46b803d5c46019f9af","tags":[["e","ce0ff5b80154330c373103dfe38f819ccb93255e9b2c08bb8d577bf9ed79ebfd","","root"],["e","99f00fb9d916775dba72b32dbadbe1fa9638f58bef78c435b1a52fe3c1fac179","","reply"],["t","emmanuelmacron"],["t","pravda"],["r","https://apple.news/AxvRWYzGdSwW4dX_OYCycjA"]]}] +[14:25:05.725] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:05.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:05.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:05.908] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:05.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:06.029] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:06.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:06.150] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:06.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:25:06.271] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"865beb0554758c65eec1c734d4acd1c1caa78195fd581dab3642a74e5a71e501","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"fa48426bffad191261b31dece16329d32429189a33fec216cf1e2305aed98157c8464bccc6cfa888a692dfe50f95c5d521700f6d32e8be9d8ebb29eea47e30bc","tags":[]}] +[14:25:06.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"5fb9220779943a4e159f48bfc78b4f6ac3da469bcd70d7cde4ce255461cc9021","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"52c644f6d5a23c41b579e73b39ef1bbab7b682da6bed235eb15e3bd50756b1e24b18f9a212180188edfdab8e4a254d458c727a259499bc8017841dcaa398ee6e","tags":[]}] +[14:25:06.392] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:07.084] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:09.326] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:09.326] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:09.326] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:09.326] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:09.478] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:09.538] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:09.599] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:09.660] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:09.720] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:09.781] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:09.841] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:09.902] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:09.962] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:10.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Impressive !!! \n\nhttps://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","created_at":1759429485,"id":"67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"853e81c8a48340facd559a2b95ef39dbaf1d35f8dd7a04da489b5287b8f4c112492680e3d6dac11d56ee44d1546ef3e26959f2894b4993ad4af05d7e45156969","tags":[["alt","A short note: Impressive !!! \n\nhttps://blossom.primal.net/2933c4..."],["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["e","d3207c6106613816e640b846516d0588cf6a473834e552d725b4ee26d80f2815"],["e","bc3d1686b43a48acebb4a90d66d9d37b7c08138f52d90a16d26f6028f19a60a1","wss://relay.damus.io/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"],["r","https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif"],["imeta","url https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","x 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","size 998241","m image/gif","dim 170x234","blurhash _B9@P0WCI:WVoLfjoM_LV@nio2WVofWU$mR+SebHoKWVo2J$axspjZa}jZW;wNa}W:bHjZWWo2NZa#oKoLayoLWVs;f6a}Woj[a|jtbHbHfQo1fQjaa}jZj[j[W;aya}f6","ox 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","alt "]]}] +[14:25:10.084] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:10.144] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:10.205] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:10.266] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:10.326] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:10.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:10.447] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:10.508] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:10.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:10.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:10.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:25:10.750] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:11.475] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:14.295] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:14.295] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:14.296] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:14.296] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:14.446] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:14.506] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:14.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:14.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:14.688] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:14.749] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:14.809] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:14.870] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:14.930] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:14.991] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Impressive !!! \n\nhttps://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","created_at":1759429485,"id":"67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"853e81c8a48340facd559a2b95ef39dbaf1d35f8dd7a04da489b5287b8f4c112492680e3d6dac11d56ee44d1546ef3e26959f2894b4993ad4af05d7e45156969","tags":[["alt","A short note: Impressive !!! \n\nhttps://blossom.primal.net/2933c4..."],["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["e","d3207c6106613816e640b846516d0588cf6a473834e552d725b4ee26d80f2815"],["e","bc3d1686b43a48acebb4a90d66d9d37b7c08138f52d90a16d26f6028f19a60a1","wss://relay.damus.io/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"],["r","https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif"],["imeta","url https://blossom.primal.net/2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0.gif","x 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","size 998241","m image/gif","dim 170x234","blurhash _B9@P0WCI:WVoLfjoM_LV@nio2WVofWU$mR+SebHoKWVo2J$axspjZa}jZW;wNa}W:bHjZWWo2NZa#oKoLayoLWVs;f6a}Woj[a|jtbHbHfQo1fQjaa}jZj[j[W;aya}f6","ox 2933c42cab5e68042065b057adce888f0d4a652503cdb7adc6576bc2db6039a0","alt "]]}] +[14:25:15.051] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:15.112] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:15.172] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:15.233] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:15.294] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:15.354] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:15.415] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:15.475] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:15.536] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:15.597] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:15.657] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"8b2bb6edf15559db6032bc1eef6430775886d67db7d729b849c9bdb52884608f","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"94312dc8ee3000a8ea95e20cd86b7ab641d5d9001368e16e91f73a45201097af85fb812ea2b706a448773975b2caa01da773d993617a62a532639b005793e54f","tags":[]}] +[14:25:15.718] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:15.778] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:16.504] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:18.714] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:18.714] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:18.714] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:18.714] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:18.865] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:18.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:18.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:19.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:19.108] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:19.168] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:19.229] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:19.290] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:19.350] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:19.410] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:19.471] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:19.531] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:19.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:19.652] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:19.713] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:19.773] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:19.834] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:19.895] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:19.955] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:20.016] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:20.076] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:20.137] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:20.197] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:20.922] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:23.732] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:23.732] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:23.732] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:23.732] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:23.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:23.943] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:24.004] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:24.064] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:24.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:24.185] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:24.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:24.306] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:24.367] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Was mich noch viel mehr stört. Diese „Journalisten“ können einfach einen Müll verzapfen ohne jegliche Konsequenzen. Und für so schlecht recherchierte Artikel noch Geld verdienen. ","created_at":1759429488,"id":"9329828e722c7a4b0d2c9580399b56997e667e57efe3cffc65f1ca892252c6d0","kind":1,"pubkey":"8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6","sig":"c7c36a600f983d6aeba4828ded4ba494eb6aebc2fe472ae5958a9ca9deda7cd27837d13b34218ea0f88c53bd17adf76dfebf06d1bb45fac6c9e6bd945da1d174","tags":[["e","9a1639170c7e913e46aae0cfd1ee7600c53f67bb8faf7859fce7e4e6ad86ffa3","wss://nos.lol/","root","8c657869fc1ef7ab797d91abf86c32c89af92b8f6ce146351d26a0c208c0fcb6"],["e","55fe34d51f31330caf54ba09760d223bec5fdbc3a5ca7913f2847b5e40ccab60","wss://Nostr.einundzwanzig.space","reply"],["p","9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","","mention"]]}] +[14:25:24.427] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fountain: https://fountain.fm/episode/PdcoEeJuuK6vcPrw46St\n\nYouTube: https://youtu.be/B-42u6oPS6s","created_at":1759429487,"id":"0791d4cfee5d066083cd5559994fb4fe1dd7a4f7746394015768d75296cb3eeb","kind":1,"pubkey":"e57fec0c802eaeacd7f204277ddb1f86eaa92e62cadd0d2697084cb4e3153bf8","sig":"5dcfa441ff4685082ef9ddee6496045e388b6cdd5a007b17be21127c4c62ac6af416cf809137cd3c8324648fac5077da38295c612043b4749980ab7f9775b8ee","tags":[["e","d40d5699bdf9dc19fabb3e86b4af1b23a07903a131fbe26978c74e95ee1f0699","wss://relay.primal.net","root"],["p","5ed4fa9d1de53613f2964ccd6d1c9e70841651080f3fc06effb8d7dfb7f52d85","wss://relay.primal.net","mention"],["p","f609d58b4253458768d9baf1b28ab4dfb5f6e690d99bb2760c83de3a840c3ea2","","mention"],["p","fd4b8c1b94b3038c742e02b4524a782ca545af3c9a516bffdeade6a63e0d101f","wss://relay.damus.io/","mention"],["p","b72238ceb7ef3547f698971b75cbaa0b5301f886909bd2fcca092b698e3f6e8b","wss://relay.nostr.band/","mention"],["p","adb164ecd9e0e0be59c223291ed1bf1c747682277a01d894a8163f72435ae605","wss://purplepag.es","mention"],["p","de7623f81c44e52697dd7b9ffa6183b333c3ea9111306213db147a0f0d9b7c4e","wss://nostr.bitcoiner.social","mention"],["p","e76d07d5cb7111ed01502ce04ab8f31a04af71db20aa60752e98a97d9fdf3285","wss://relay.nostrcheck.me","mention"],["p","bad0fd7de56e240026ffa52f75cc41891b5b7d9e6eceed5728223781f8307095","wss://relay.primal.net","mention"]]}] +[14:25:24.488] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:24.548] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:24.609] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:24.669] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:24.730] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:24.790] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:24.851] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:24.911] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:24.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:25.032] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:25.093] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759429387,"id":"ea92318514d3ed6fae107e75ff9d8a531cd6e87a5a3e2547d0edc8949f1d08c5","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"02e25a84b45390192ee416afb9eecd7b1a28e3a47e489663626c7588a514cd80f142ed161cb2560bed1bc0056890439c486ab7f0513a8b2d4efa6f0486f27edf","tags":[]}] +[14:25:25.153] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:25.214] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:25.938] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:28.144] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:28.145] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:28.145] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:28.145] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:28.297] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:28.357] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:28.418] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:28.478] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:28.539] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:28.599] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:28.660] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:28.720] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:28.781] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:28.841] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:28.902] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:28.962] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.023] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.083] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:29.144] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:29.204] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:29.265] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.325] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.386] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.446] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:29.507] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:29.568] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:29.628] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:30.353] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:32.596] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:32.597] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:32.597] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:32.597] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:32.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:32.767] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:32.828] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:32.888] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:32.949] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:33.009] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:33.070] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:33.130] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:33.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ドロケイ好きだったな\n隠れといて、足速い人を率先して逃すやつやってた","created_at":1759429494,"id":"51b766e62eb7792a661b7d85a0045067e04b836613005cb7b0e63bc3d50ebdee","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"c92e3ec3ffeb3bedcf6365a715406ecc8f99d2551344a9ee717bda6b5781756bf236d06ba68f2e3726767386a9b8d46e41b7a6616362c04b70fc1b2f4a5ae01e","tags":[]}] +[14:25:33.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"KeyboardEvent: keyIdentifier property\"\nhttps://developer.mozilla.org/ja/docs/Web/API/KeyboardEvent/keyIdentifier","created_at":1759429493,"id":"22917ed92b0164379fe8659bd289c3e8afab3daf0e551590ba39230b258216d2","kind":1,"pubkey":"4f129b892cf19a3dd2eb6e6bb097349e88e9fb51c035b119795900c8235ab5bb","sig":"220c8be5b7d0e25c93c1d55e1c70e52636082102967ed9b81d91b46339a0e6f08284b5ef0a44b46256a0c0fc3c6ee36935583441b5d17370458d30113122a1ca","tags":[]}] +[14:25:33.312] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:33.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.433] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:33.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:33.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:33.675] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.796] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:33.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:33.978] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:34.038] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:34.763] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:37.009] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:37.009] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:37.010] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:37.010] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:37.161] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:37.172] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:37.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:37.293] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:37.354] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:37.414] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:37.475] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:37.535] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:37.596] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:37.657] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:37.717] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:37.778] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:37.838] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:37.899] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:37.959] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:38.020] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:38.081] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:38.141] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:38.202] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:38.263] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:38.323] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:38.384] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:38.444] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429510,"id":"2a70b4417e0e2dbd7753b8aa3166310f0bfc9d200ae066b9da1e2ebc50d49e1f","kind":3,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"da21770b2c092afd9bc8a74ac9c72f5b513de2408af25a4483590a1075d900ef40b857590075cf745cceeaacd863bd868683cf302416a79bc4cab8e15a598d29","tags":[["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","cf578d5b8fb7c62563a803a30bd2fc3a952ca7ba9652ee2ce43a991316d8c157"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","b12deee231e85bec19f3e4e3fee5893d449b8ce159ed2adcecf60262afca6d50"],["p","20bde2ebe3b256b1c161ad9a887aba7dae9c4c63a50c9c78ce89ea361efa631e"],["p","af7673fb09d598eb63272cd7e6c1d1614031cdfc084c460f5d549be335dc7630"],["p","8e71076fc49f8eef0e6d475c51f37d58116013912a9eb796f46287ebe9257b75"],["p","80f734108f37aec8cf64023514b9ae26bcaaed2a13eb85ad3a8482da1168b1fc"],["p","a530f7f75b62f86073078fd0d82302508c9273ec846d19766ef41417eb820644"],["p","2355757c6ec5e1766eba903dde5f545cac6da27d0dbacbf9725800ff5ad3e04d"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","1be9326168faf4f5ef18770ab163fe2c26bc049d21298186377cdc033bf69614"],["p","f96073dc6b6db9e4d256d9a3afd7222c70ba0b9fd36bf20608f6a43c5951c7c2"],["p","3814facc571e06311cfea11760a4ecb3f28d54adc14e6e01d016a82986fe153b"],["p","80e81c631dff7e88e704b15c6406b622b5fd3f41bc039eb0f4b9e75d2f6c61dd"],["p","6b4ec98f02e647e01440b473bbd92a7fae21e01b6aa6c65e32db94a36092272e"],["p","d2384c4ac623eb9f15ae4cb32ee7a9b03e0202802d52f2395f2ee8f6433151aa"],["p","637ae527280d7a0b26bb6c2b75bad172f5bd6c8a8b1907b102229680cf0c3868"],["p","af8b4ac37ae33b3ca464681b08cf1f6a657f82bb8b958fd82edbde8abf36b940"],["p","135c872ba7d8321f7bc440b5bd49e8adac64f76385e977a1f4a4f49c2c36dd84"],["p","b1da6019136283a26dd6eed2332a3e04b0b88b2281946cb17a16a626a3bf4a62"],["p","4d6d388658271af489f6fc8458ddf010bd9268c1fed673352c0c6ae7fee13f23"]]}] +[14:25:39.169] RECV nos.lol:443: b6e26f4090b44a68284f584d64d8976ae37cd209e816d82aa"],["p +[14:25:41.412] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:41.412] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:41.412] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:41.412] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:41.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:41.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:41.714] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:41.775] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:41.835] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:41.895] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:41.956] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:42.016] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:42.077] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:42.102] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:42.163] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:42.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.284] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:42.405] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:42.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:42.526] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.647] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:42.768] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Em :official_verified:\",\"about\":\"Privacy Advocate. Security Passionate. Protector of Data. Tamer of Python. Lover of Encrypted Keys. Recycled Artist. Hardware Enthusiast. Fan of FOSS. Happy Mastodon Mentor to all newcomers!\\n\\nSpending most days writing, reading, and talking about privacy. Journalist at @privacyguides \\n\\nOpen-sourced & open-hearted.\\n(she/her) 🏳️‍🌈\\n\\n🔒 Privacy tips at: #TinyPrivacyTip \\n🐘 Mastodon tips at: #TinyMastodonTip\\n \\nOther hashtags I talk about: \\n#DigitalRights #HumanRights #Privacy #Security #Python #FOSS #FLOSS #OpenSource\\n\\nSecondary accounts at (do not contact me there):\\n🐘 infosec.space/@Em0nM4stodon\\n🐘 mastodon.social/@Em0nM4stodon\\n\\n#nobridge #nobot #noai #noindex #nosearch #noarchive \\n\\nThis is a personal account. Opinions expressed here are my own and do not necessarily reflect my employer. Especially emojis :awesome:\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/108/197/851/470/625/041/original/f56f05846a226449.jpg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/108/197/851/470/625/041/original/7c3da3c2e19d6748.jpeg\",\"nip05\":\"Em0nM4stodon@infosec-exchange.mostr.pub\",\"fields\":[[\"Privacy Guides Articles\",\"https://www.privacyguides.org/articles/author/em/\"],[\"Web\",\"https://emontheinternet.me\"],[\"Blog\",\"https://controlaltdelete.technology\"],[\"Code\",\"https://snakecase.software\"]]}","created_at":1759429387,"id":"0b4a3cdf879aef74c0cc50708c43f5e16008173243b5f9cc57a5d52a8fea0e94","kind":0,"pubkey":"324a744a05e221eb6ed9afe1a1c85bb116cb460ca08b7a0bcc85bb283de694b8","sig":"97e7a338d6b0ec5f891efc5e33aa47cb83f99741634823be5ec15b5eac34ee8e3151a770eb5f2df1ecab73e5eb976e9b7067d1daf15963e81012d57ad89f0042","tags":[["emoji","awesome","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/028/579/original/dcea540b6fc9cffd.png"],["emoji","official_verified","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/162/396/original/70b97769f901fd31.png"],["proxy","https://infosec.exchange/users/Em0nM4stodon","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:42.828] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:42.889] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:43.191] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:43.251] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:43.855] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:44.036] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:25:45.313] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:45.313] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:45.313] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:45.313] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:45.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:45.524] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:45.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:45.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:45.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:45.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:45.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"At the time this happened Jose Ramirez was already in the top 10 (and top 5 in some) Guardians team categories like, Home Runs, RBI’s, Steals, Games Played, All Star appearances, perennial mvp (usually year and year out top 5 voting). I consider this his “George Brett Moment”. Most sports greats have that one lasting image that is legendary. This is probably it but it certainly didn’t define his greatness in Cleveland. Most true Guardians fans who actually paid attention would agree that he was great way before this. If anything it brought him to the national conversation.\"\nnostr:nprofile1qqswc3w8t44syr8g6hsywql42edjxecgdm4h6x2nuud69kr0d9xc6rcpz4mhxue69uhk2er9dchxummnw3ezumrpdejqzrrhwden5te0vfexytnfduq3samnwvaz7tmjv4kxz7fwwdhx7un59eek7cmfv9kq5pfec7","created_at":1759429502,"id":"f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"55da2491e05575343c2b4717af8ec41c2c688d9238e0d4c0866e4a49daa85698e71af3aa4fe02071231cf0f0ed3db74fd630887f7a8cb8c10706c744b25f61eb","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:25:45.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is one of the problems I have with most books - they are filled with lies, and you can glean some truths by kind of filtering out the biases, listening to what's not said, etc but it's exhausting.\n\nFor some reason philosophers are usually but not always an exception.","created_at":1759429500,"id":"5faf03263965a007242ca31f2b52d77c35ed2daa4188e9981536c1ea3d9b8018","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"e935541a0fbb4409dd1af816bf6f310aa0fb5dd9b97b8f8d93fda829d547c8262d846e5073e58f1c10b65f0311d0caa926f8a89e00234de86b7249c6d81df772","tags":[["e","be30626aa378bd40ab1f69c30b47a3e7e3e58fe48baec62a6a9a7ed8f8c5dda3","wss://nostr.oxtr.dev","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:25:45.948] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:25 ------------✄","created_at":1759429500,"id":"4c29eda82c12c803ad986dc78c0cfe4ed33ef90df3f868df623fcce8ed12a69f","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"84d76946c7a973b1978bc7d4f30c3c8508e3584e0657eced7f12b19eaf9ec6b5bd1e23115a852adf3819d9d2059a0c5e599ecfdbeb521fea8634ff632bec09f6","tags":[]}] +[14:25:46.008] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"fuck, i want one aswell.","created_at":1759429497,"id":"30cbae408b721b956f7bb16137c5efe747a6332d5ada8a683333c74e4939a3f9","kind":1,"pubkey":"2bc1cc9268507667c92ea0ec6aa652fc78f1185a9fc9d976910aa6f237811ea5","sig":"c536fac7d83ae2c2c3fc95c7d9b12ada51cd42f3271ad629039dbfa4f5bbc10725e4576ce3174425b302c23eb443957b57bcf5047f012dd7dd55456f3f697fe7","tags":[["e","66a5326113be9221cd5193a00f2799959bccd8f91b9f254849362c20d1dbb678","wss://nostr.oxtr.dev","root","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["e","c1778ec702e924871074b1b6b00da61a2df715cb330e486cf130812f7333fb16","wss://nostr.oxtr.dev/","reply","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"],["p","0c9e5e17fbdf555ef41daf3c3a196749c848f9c791966f30fae5e4c0480e870b"]]}] +[14:25:46.069] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:46.129] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.311] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:46.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:46.432] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:46.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.553] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:46.674] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:46.735] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:46.795] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:47.097] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:47.123] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:47.726] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:47.907] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:25:49.181] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:49.181] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:49.181] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:49.181] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:49.332] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:25:49.393] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:25:49.453] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:25:49.514] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:25:49.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:49.635] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:49.695] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:49.756] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:49.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It has a nice climate though","created_at":1759429515,"id":"a1abc35f2c9218b189e4433393facfcc11446d9fc8cfb37c9c76dd30401605d0","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"4235e7f90a2ffbc72cec4c96fda31ca4c3920ceb7df2b32b2dbd9848ac734cfc81dfe6fb9f0354f3bd6f21963e5e60f9165fc47015f316d4f75006ea27303d4f","tags":[["alt","A short note: It has a nice climate though"],["e","a92a4af575a186426a583c1d1451315b8fa120332999bd35525dd64f67dc4b31","wss://nostr.bitcoiner.social/","root","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df"],["p","b0d7aad45407391ee2bb128f73c3cd329346c0de18b19b90a48f0440645d2a85","wss://relay.primal.net/"],["p","101a112c8adc2e69e0003114ff1c1d36b7fcde06d84d47968e599d558721b0df","ws://https//rs25akytzmo4uj25jrq55rjqs4qcncxjmcrvdncibuopflcmf3y7orqd.onion/"]]}] +[14:25:49.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Zapped ","created_at":1759429506,"id":"6602dc540a4ccfcb88d74426762399f48545d3a85f710a8ec02954ab42361b35","kind":1,"pubkey":"f9c8838736f5a0b611ed2c458a8ae7a480802e4ec38e52e96483986ca44ce612","sig":"0f8e1137c408c72b0c9c8f0a1d5db996dd4fdf56c35ee2f1a531b830536a7210284e9e86198c6078564d2139c56780605c65ae591c8dce760c4e828607885204","tags":[["alt","A short note: Zapped "],["e","e2036afff2a51788e172db94df0a8b5dbf9fbcfbfd5a2cdd5ee1021bcd25f4e1","wss://relay.primal.net/","root","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422"],["p","b5127a08cf33616274800a4387881a9f98e04b9c37116e92de5250498635c422","wss://nos.lol/"]]}] +[14:25:49.937] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:49.998] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.058] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.119] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:50.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:50.300] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:50.361] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.421] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:50.542] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"display_name\":\"Oshi (推し)\",\"name\":\"oshi\",\"nip05\":\"oshi@oshigood.us\",\"lud16\":\"oshi@coinos.io\",\"about\":\"⚡️Artisan Pecan Butter, Date Bars, and Chocolates. ₿itcoin and nostr only. \\n\\n#hodlbutter • #hodlbar • #bthcnodes\\n\\nCustom orders: oshigood@proton.me\\n\\nSimplex group chat: https://smp19.simplex.im/g#k1srY8O6XCiYbcLh6BY7lavWtpc2xLz2R8MXKfJsrJk\",\"picture\":\"https://image.nostr.build/a62937470157b7e9e349ea3baebffc92391754262538b257fe5eb54f79379b09.jpg\",\"website\":\"https://www.oshigood.us/\",\"banner\":\"https://image.nostr.build/70b92cc7446a452ccdf036d18ef7f5e2e0843b7b1a8fda39e99337862e96163e.jpg\",\"reactions\":false}","created_at":1759429433,"id":"5ff517f5cc88d9c2668b4e5dd85a409ce935707c93e2344a356ba19b8df96fd8","kind":0,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"f40ff0b9fa3b9c2288712633b9f4a158e3c18ef372806b12694f7c2e339fe6deedbf371a0077c81aa3ed0a2ec2053d2119dba65ed4d3cc8b856c3a73faa6c837","tags":[]}] +[14:25:50.603] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:50.663] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:50.965] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:51.026] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:51.629] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:51.810] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:25:53.048] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:53.048] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:53.048] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:53.049] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:53.206] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:25:53.266] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:25:53.548] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:25:53.609] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:25:53.670] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:25:53.730] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:25:53.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:53.851] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:53.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:53.972] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Do it bro. Dooooooo it 😂\n\nhttps://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif","created_at":1759429523,"id":"1090744e81ce1f8a4ffe2398c47f56482aa0e0fa704828c3d60ef70bb4c6d1ed","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b6dfb65afc3cb69f212eaaeb944498bfe6bdb466ef2917dd2bd3a577d8851fb6b7ad014cbe57b0410eaa539300a6b47059af9b994c75a81e6ab32e1a425c79a7","tags":[["e","7d56c6b3979cefb1ba1aa44ea3c72ac08a42143097633ea5b9a21da8d083e3af","wss://relay.damus.io","root"],["e","54e86e22b62345acb66fe0dada1fc413b907c76ce8ceb90fd648760195b9c4e6","","reply"],["p","8d78f3903a1b708c77696e07d2f49065e792b830825679af650313c2d3233370"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["r","https://media1.tenor.com/m/Cxj0iGzCLLYAAAAd/do-it-star-wars.gif"]]}] +[14:25:54.033] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:54.093] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:54.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:54.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:54.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.578] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:54.699] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:54.760] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:55.062] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:55.122] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:55.726] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:55.907] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:25:57.185] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:25:57.186] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:25:57.186] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:25:57.186] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:25:57.357] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:25:57.418] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:25:57.479] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:25:57.539] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:25:57.600] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:25:57.661] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:25:57.721] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:25:57.782] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:25:57.842] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:25:57.903] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:25:57.964] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:25:58.024] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.145] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.266] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:25:58.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:25:58.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:25:58.448] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.509] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.569] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:25:58.630] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:25:58.691] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:25:58.993] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:25:59.053] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:25:59.657] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:25:59.839] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:01.116] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:01.116] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:01.116] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:01.116] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:01.267] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:01.327] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:01.388] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:01.448] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:01.509] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:01.570] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:01.630] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:01.690] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:01.751] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:26:01.811] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:26:01.872] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:01.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:01.993] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.140] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:02.200] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:02.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:02.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.382] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:02.503] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:02.563] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:02.866] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:02.926] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:03.530] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:03.711] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:05.181] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:05.181] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:05.181] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:05.181] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:05.333] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:05.394] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:05.454] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:05.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:05.575] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:05.636] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:05.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:05.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:05.818] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:26:05.878] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:26:05.939] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:05.999] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.060] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.120] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.181] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:06.302] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:06.362] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:06.423] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.483] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429455,"id":"17af288333e4ce8aa75d30a76c16ba4da21f74f3ee93d010114238f0a7cfb7c0","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"fd251ecf5677f068728e94bb2aefb0bce16c713a3a89dbe3f7e58ab47969864d733541424c8734bbc0fb91d724b72cb509fd8bd5a4833e0fd41965181920c716","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:06.604] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:06.665] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:06.967] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:07.028] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:07.597] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:07.778] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:09.078] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:09.078] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:09.078] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:09.078] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:09.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:09.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:09.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:09.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:09.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:09.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:09.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:09.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:09.867] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:26:09.928] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapsnag for 500,000 sats and send me a DM.\n💜\nhttps://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","created_at":1759429524,"id":"bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"e49111affacc861d410a35dd22dbbda683f0fe008088aca47de9ee32a3f0fa9f9aca260f65fdffd20bd8b0327b1a95df4bdfc77b45eb09e12129ea9e3002d52c","tags":[["alt","A short note: #zapsnag for 500,000 sats and send me a DM.\n💜\nhtt..."],["t","zapsnag"],["r","https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg"],["imeta","url https://image.nostr.build/5a7b00bbb8a9c68172a8b385702bb0473afe205ec3b166a5ef1ca45e36996c09.jpg","x f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","size 184533","m image/jpeg","dim 1500x2000","blurhash _8Jj_04Th}vmb{=zxu_K.6XmNNN3R6n$^%,;J.X.R5I:nhERIVxsxrw[xuV[k[tmn2R4%LxGT0wMtS%g%LtQWBWE%gx]x]niX8tks+.8kXIpS5oys+t5b[R*NKNGnNjXbb","ox f0572ec943a467b1eeae76c35e0d8027c05a402df7d31d260bf7813612b5b3b9","alt "]]}] +[14:26:09.988] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:10.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:10.109] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.170] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.230] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.291] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:10.412] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:10.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:10.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.593] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:10.654] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:10.714] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:11.017] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:11.077] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:11.681] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:11.862] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:13.105] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:13.105] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:13.105] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:13.105] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:13.437] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:13.498] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:13.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:13.619] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:13.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:13.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:13.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:13.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:13.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:13.982] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What’s in there???","created_at":1759429532,"id":"26be005898bc6ba779c6dcfdf8d452a0f08f3ab31df5ba6b4990f34666bc39e4","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"a585e8a17f07be739b28be43d47949763a21634d857dfa40024b32748495eae831fc17dcd48a57fe0d4b9f13b5d684c6f69618463380ec561ed2b8510fd6d1ff","tags":[["e","ef6635f4acd8f161b8eb9b4b12b144efe589fb7d8d85c78f61475abcb577d7fe","","root"],["p","d8f38b894b42f7008305cebf17b48925654f22b180c5861b81141f80ccf72848"]]}] +[14:26:14.043] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:14.103] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:14.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.285] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.345] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:14.466] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:14.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:14.587] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.648] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:14.709] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:14.769] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:15.071] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:15.132] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:15.736] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:15.917] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:17.190] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:17.190] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:17.190] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:17.191] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:17.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:17.351] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:17.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:17.472] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:17.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:17.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:17.654] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:17.715] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#bitcoin Core is fucked and they did it to themselves. They are the new btrash crew. Fucking up the Bitcoin protocol. Running Knots…","created_at":1759429547,"id":"f1a25303cf32e28bb7df7b7614bfd075c7e7fa0d266156640b13aee7e4b9ece8","kind":1,"pubkey":"fc745f261349109985cea5a80d33be0e26b90c0864b76501265c5481534e7b30","sig":"179cf5038a1c6337147411aefc5e6e9d1a104b84d9f4c374a350644c0300e55a77c5d238ee4e2b32951bfa9cd994e1d0de9b9cf8a9d39d8222ae7dfae0836ba1","tags":[["t","bitcoin"]]}] +[14:26:17.775] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今日mattnのAI動画でASMR聞いた(聞いたって言う話だけしておきます)","created_at":1759429547,"id":"458ed03f770223fd9126ccdc50e8284fb0430294746efd7b1d3a4a6ca9aef79f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"298d0b8460e2ea022dfad65c87462acc26b94164ea0374db0f95ab4e77a79ee647d5a2b2a126cf904897ded3da3879ab8021c7db516e25c2df6f15e6e776c9a1","tags":[]}] +[14:26:17.836] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What can we do?","created_at":1759429533,"id":"9fd8769577e085dddfb14fe22f700a91f99f5d48dec5873fa6a37aa006749abe","kind":1,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"46a1a4b8dfa1b8b0b10bea624b575adef43824d5c490b893c8f7fa29bf114cf791284b4b5a157cf550a2148e96395ddda84a11d0286e85e5593a0cdfc0610e82","tags":[["e","9154dbfaec941da7c265678755701ba50ad2a4446d5a419077c1f31511471cec","","root"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:26:17.896] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:17.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:18.017] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.199] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:18.320] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:18.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:18.441] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.502] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:18.562] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:18.623] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429538,"id":"2cfb6637c7b2ae0ae3e859758a04e4afdc0c21174824c3700664f09bdeab21c8","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"62d6ba48192cf191febba3b50b8fce227689a6e1163e5d0a0992615d1eb94f5083e20148c9eedb8ff05d37a99ebf981dd08346c50612aa515b4d882605a7c8cc","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"]]}] +[14:26:18.925] RECV nos.lol:443: 1e837fb346bfd2c9df816dcccf683f5eff0e9a89489b315180527c +[14:26:18.986] RECV nos.lol:443: dd2e76a61020","tags":[["p","38dbb9b07d93861d40620ad62d4 +[14:26:19.590] RECV nos.lol:443: 9557b728c3be4c6a844b"],["p","f7922a0adb3fa4dda5eecaa62f6 +[14:26:19.771] RECV nos.lol:443: 380cab4832f8daacbb52"],["p","0153d742cf537c94e2bef9541cf +[14:26:21.659] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:21.659] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:21.659] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:21.659] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:21.811] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:21.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:21.958] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:22.019] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:22.079] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:22.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:22.165] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:22.226] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:22.286] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:22.347] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:22.407] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:22.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:22.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:22.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:22.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:22.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:22.771] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:22.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:22.892] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:22.952] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:23.013] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:23.073] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:23.436] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:24.585] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:24.826] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:24.947] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:26.115] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:26.115] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:26.115] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:26.115] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:26.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:26.507] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:26.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:26.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:26.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:26.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:26.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:26.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:26.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BootiFull \nhttps://images2.imgbox.com/2b/56/YBu7QR5A_o.jpg \nlook back at it #BootiFull ","created_at":1759429547,"id":"641377f01d32fd2fc43b62c630766613eecb395f301d9b27b7048b2766dc32ce","kind":1,"pubkey":"000006bb62c0e3e418c342334165da0a17b971b8feae869af710d5a8979114a6","sig":"af489b1b2347c8ecdbb52b20846dc965aeb46a9fd0b0a6ae5850e2676e08acb575888d065327334621d8b4d77f02fa8ed21eb5e04cfbbd73ec4417c5eca282ac","tags":[]}] +[14:26:26.992] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Can you pass me to Dave ?","created_at":1759429547,"id":"a58ffaa16997369ce3d3c03c9f003889a86fa145f460c057f0b9cc3cf7bc8356","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"2428a90cc6ab4a3ea770b7fdeccb84b7474e973ef23471d92b0b50ac691bdee3d5008030baef7170e39a35e3e3220ccbd532c59bd862089f0df8b745fb0648e5","tags":[["alt","A short note: Can you pass me to Dave ?"],["e","6cf55726b5d4a77dd6a7df40446faf149eef7ce8cf1d1fde1e6e38bdaa9b26ea","wss://relay.orangepill.ovh/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:27.053] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:27.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:27.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.199] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.381] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:27.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:27.502] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:27.563] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:27.684] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:28.047] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:29.195] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:29.437] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:29.558] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:31.165] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:31.165] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:31.165] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:31.165] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:31.319] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:31.379] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:31.440] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:31.501] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:31.561] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:31.622] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:31.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:31.743] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:31.803] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:31.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:31.924] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:31.985] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:32.045] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.106] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.133] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.193] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.254] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:32.314] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:32.375] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:32.435] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.496] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:32.557] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:32.920] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:34.067] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:34.309] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:34.430] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:35.405] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:35.405] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:35.405] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:35.405] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:35.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:35.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:35.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:35.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:35.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:35.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:35.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:35.981] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:36.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:36.102] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Oh absolutely not. Are you not then? You're just virtue signaling from the sidelines? \n\n","created_at":1759429549,"id":"8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","kind":1,"pubkey":"80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c","sig":"ab98e1418bab697b6c741351b28e2ad8a4471f6c7512b2abe5deacb7c649bdd34d2250de6d9206427de6e46c28910b5042fc0fee4de3b4959e2099f2921befae","tags":[["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://Nostr.einundzwanzig.space"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","wss://nostr.einundzwanzig.space"],["e","8e205aa9c4740c81b3fc1f7b31260b4126f6dfcff5251223f6394674893af212","wss://Nostr.einundzwanzig.space","reply","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","wss://nostr.einundzwanzig.space","root","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:26:36.162] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:36.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:36.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:36.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:36.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:36.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:36.828] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:37.156] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:38.303] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:38.545] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:38.666] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:39.640] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:39.640] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:39.640] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:39.640] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:39.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:39.963] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:40.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:40.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:40.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:40.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:40.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:40.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:40.387] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:40.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"FWITW here’s my take on the Core vs. Knots storm-in-a-teacup.\n\nIt feels like yet another manufactured crisis aimed at seizing control of the codebase — starting around two years ago with hundreds of millions of dollars burned on transaction fees to spam the network with superfluous data. Tellingly, that activity came to an abrupt halt right around Trump’s election, and now 1 sat/vB transactions prevail as if nothing happened.\n\nDespite this, panic is being stirred, with calls to abandon Bitcoin Core for a client maintained by a single developer, who wants to decide which transactions are “good” and get through, and which are “bad” and get memory-holed.\n\nIt will be telling if the drama continues now that Core has backtracked a bit. If it does, it’s a clear sign this fight isn’t about halting ‘spam’ at all, it’s about control of the codebase.\n\nAnd on that subject: this episode only reinforces the urgency of ossifying the codebase against anything beyond essential maintenance and security fixes, ideally before the original cypherpunks retire. In my mind the deepest confidence and respect must go to those who not only bootstrapped Bitcoin, but also stood firm in defending it during the Blocksize Wars.","created_at":1759429551,"id":"514a51a0c43e5448e0d01980f3b0402d557c9c64515e8c3147ea2311509262e8","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"7fb9b6d3b715a9fb137a07d4e75a2628895aee2e9d1ea6128300c314f6963631b892cca4c38ff34c8e2c3980da9184ab2a40293465ef9a6f311bf8da263152a8","tags":[]}] +[14:26:40.508] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:40.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:40.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:40.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:40.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:40.810] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:40.871] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:40.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:40.992] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:41.053] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:41.113] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:41.174] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:41.536] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:42.649] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:42.891] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:43.012] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:43.989] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:43.989] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:43.989] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:43.989] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:44.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:26:44.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:44.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:44.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:44.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:44.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:44.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:44.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:44.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like a glory hole. But for wine 🤌🏾🤌🏾🤌🏾","created_at":1759429570,"id":"96f7f3849709c246526da6424547f78abb5d2b0ae6361c41b0f660ac304b8a23","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"9d3f7ece4328279666e9779ca5b929f930ad69cd1898cc993cd644e77ecfc37047c2618233a43d85864a7baf3990ba8afbabf71382ce86dcd727c41aa3cc7560","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","67c944ddc2f7f3d428b227f202d6163ac8b36739bb36c9f63bb2c350c36c13f2","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:26:44.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Remember, even as Bitcoin climbs back toward its highs, it’s still far from reaching its true potential. Stay grounded, the real reward of Bitcoin comes from practicing low time preference.\n\n#Bitcoin → ₿120,246\n₿lock height → 917,402","created_at":1759429556,"id":"e85c0fa796ee3f66d95c10b69e87137e91d1654e082833b2064f539b43d7f8a3","kind":1,"pubkey":"b8e711ea98fc1d6a53e86c5f802580e97529bceb03c033a57726c3708e21bfcf","sig":"d110d7693807abe9e9798b0521dc070a87f1aa70af13a9c3ac54d324ddd339132dca900b062029fd675819d1b18cb3b707089db5008c9df4f43b6f0100c70a57","tags":[["t","Bitcoin"]]}] +[14:26:44.746] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:44.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:26:44.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:44.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:44.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.170] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:45.231] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:45.291] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:45.352] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.413] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:45.473] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:45.836] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:46.984] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:47.191] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:47.311] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:48.283] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:48.284] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:48.284] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:48.284] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:48.435] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:26:48.496] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:26:48.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:26:48.617] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:48.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:48.738] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:48.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:48.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:48.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:48.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:49.041] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:49.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:49.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:49.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:49.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:49.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:49.707] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:50.069] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:51.217] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:51.458] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:51.579] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:53.176] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:53.177] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:53.177] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:53.177] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:53.328] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:26:53.338] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:26:53.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:26:53.459] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:53.520] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:53.580] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:53.641] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:53.702] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:53.762] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:53.823] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:53.883] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:53.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:54.004] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.065] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.186] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.247] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:54.307] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:54.368] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:54.428] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.489] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:54.549] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:26:54.911] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:26:56.058] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:26:56.299] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:26:56.420] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:26:58.420] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:26:58.421] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:26:58.421] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:26:58.421] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:26:58.572] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:26:58.582] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:26:58.643] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:26:58.703] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:26:58.764] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:26:58.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:26:58.885] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:26:58.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t laugh at my brother nostr:npub10mtatsat7ph6rsq0w8u8npt8d86x4jfr2nqjnvld2439q6f8ugqq0x27hf 😂","created_at":1759429579,"id":"f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","kind":1,"pubkey":"26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","sig":"552b4fd3ead1c0788bbe787a1a088b3cedf41bfd93f4aa74f5288c4841c19b1a2699fe8d8bff2a22196a63b9fb42c25fb19eef031a54304f7666406e86347bf0","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200"]]}] +[14:26:59.005] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Only Dave can assist me ...","created_at":1759429578,"id":"92f9ec5fa4d5849b54e75d82b6feeaa75152cac6e985443aee68337e8bde97fc","kind":1,"pubkey":"04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","sig":"a4f86e1fcc036ffe41064ea682fe6cbd92b6ce7660ffa677a8699a787bcebb8d4f39285ffc86f19231d2f1f4731043be46faef6802b927f49a44774517fce6ca","tags":[["alt","A short note: Only Dave can assist me ..."],["e","273784ee39316bda883e9b4de3e36439c61acc940e5c8a2af98d3faf3eccd2b4","wss://multiplexer.huszonegy.world/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","ws://bostr.bitcointxoko.com/"]]}] +[14:26:59.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ich bin nicht live, aber es trotzdem wird angezeigt als Ich live wäre. Ich kann den Stream weder stoppen noch neu starten","created_at":1759429576,"id":"5acb8491b03dddf13d937c1bcfb02c04209b50211a3fba85f016676fe004ba10","kind":1,"pubkey":"0b26f590631b0fa3048d103410e484e5e22e2d5a8eceaceda9d91b38f81dd1a8","sig":"d1c15312a4b2275be173cb155936865d1eba608ec0a5d26d3c22294c8b774be6f35a30ea3f6bd8795570e27f36fd5e4aa50297f269931fc80dd9b463e221dd83","tags":[["e","9bb1dc033c46e0bccf67af4af1a7eeee1859d0d25bb5a79c026bdbd08b71a0c2","wss://nos.lol/","root","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba"],["e","a7cbab5256ad6198f583de1d648d9b2623ea86317373c41624b63cdc36e8fd1f","wss://nostr.oxtr.dev","reply"],["p","e45841bc9b795849c26b200fe8f25c8433ca89b6e283e1be48458d96f585dc53","","mention"],["p","f240be2b684f85cc81566f2081386af81d7427ea86250c8bde6b7a8500c761ba","","mention"],["p","657e87499e026715f81286030408ac032014eaf9c342ac59017b4472f013a43f","","mention"]]}] +[14:26:59.127] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:26:59.187] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:26:59.248] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.308] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.369] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.429] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.490] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:26:59.550] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:26:59.611] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:26:59.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.732] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:26:59.793] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:00.155] RECV nos.lol:443: 0ce4c3023510","tags":[["p","d9745145355cf334e327d679d4c53 +[14:27:01.303] RECV nos.lol:443: b3e333e6ed76a1e6"],["p","5c10ed0678805156d39ef1ef6d +[14:27:01.545] RECV nos.lol:443: 88656e165426436e3086c3c"],["p","af4bfa6b6d076853308 +[14:27:01.666] RECV nos.lol:443: 29540126f80dc"],["p","5f0d66bacc2313d42688ed847304c2b +[14:27:02.640] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:02.640] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:02.640] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:02.640] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:02.796] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:02.856] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:02.917] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:02.978] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:03.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:03.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:03.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"みんなが外で遊んでる時、俺はガブリアスの厳選して、リズム天国のリズム感を120にしてたんだな","created_at":1759429599,"id":"21b775d08a53e698aaee9d29d6be4dfdb374fc69b16a01ac4ffd5c24eed8ae4f","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"2490f5dc77f5f47d56bfb6aae9097b70792ef0a17952f1416bc7bab849f10c590826124abde346ebb8f640dc9c3f0863fd89b2ac5906d345e97a726c1f878c9b","tags":[]}] +[14:27:03.185] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Core v30\n\nhttps://primal.net/e/nevent1qqs9zjj35rzru4zgurgpnq8nkpqz64tun3j9zh5vx9r75gc32zfx96qvnvkcg","created_at":1759429587,"id":"0b7ea4a6a4d9d1e314ff54138d9f9c3e63a2f94e55e692eb844a179b553f62f6","kind":1,"pubkey":"6bb36e4f65717a8e8acec00e726cdb93e51020d8e576e482720309c874b8e187","sig":"856d6c3fdf0cb61fda7edd049cbead7371aab95d99b7b6f3e8dca00dead741df18bd47750140c288ede9ac8a84947a7f341f5d9edc059edcfb4a60520ca75ed3","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:27:03.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\"Cleaning\"...","created_at":1759429586,"id":"99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"b5bd8df5df92c9bb62b64b3e5d34d6705b37e14b5100ad43598e3e23809363f9f3fd205baf70eef37eb504fca802a577d1f9de010ec88b467a266216a858e151","tags":[["alt","A short note: \"Cleaning\"..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"]]}] +[14:27:03.306] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Done and dusted ","created_at":1759429579,"id":"c54acb3462b615be2862ef91077e4b55d4bdf4590d62227df2e832046a6d6290","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"73a90292c84af4891f9009a6221f96238f90e751f2bcdb0372249f6d827cee776d4186dab77675c6541093cfb4c4a642a0545eb68d7036a4aad50120fe24b343","tags":[["alt","A short note: Done and dusted "],["e","2b380dd348e170ff27c3dfbed133ec9abc62575108383be94f1d2ed7ec268740","wss://nostr.azzamo.net/","root","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","3a990e9d72ad99252c227c451a265fa063b866d6720d68dacb4903a58605216f","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:27:03.367] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:03.427] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:03.488] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.548] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.609] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.669] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.730] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:03.790] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:03.851] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:03.911] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:03.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:04.033] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:04.395] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:04.757] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:05.180] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:05.966] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:06.509] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:06.751] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:06.992] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:08.269] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:08.269] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:08.269] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:08.269] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:08.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:08.431] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:08.491] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:08.552] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:08.612] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:08.673] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:08.734] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:08.794] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:08.855] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:08.915] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Good morning.","created_at":1759429599,"id":"e67f0dc4866a8e9b2742626c8a38618b31af298db2d2b44f4059aa6982f1f222","kind":1,"pubkey":"655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca","sig":"15c00a83e8c3978b7feb64848b7edba5d05c18a6ca0d09cd6ceedd32ca05888f37f198a12c32bc41dda80eeba2d15e1c28db7c8be595bec5e0688268aee93208","tags":[["alt","A short note: Good morning."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.damus.io/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:27:08.976] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:09.036] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:09.097] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.157] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.218] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.279] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.339] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:09.400] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:09.460] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:09.521] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.581] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:09.642] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:10.005] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:10.367] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:10.790] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:11.576] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:12.120] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:12.362] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:12.604] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:13.846] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:13.846] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:13.846] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:13.846] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:13.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:14.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:14.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:14.179] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:14.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:14.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:14.361] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:14.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:14.482] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:14.543] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Good morning.","created_at":1759429599,"id":"e67f0dc4866a8e9b2742626c8a38618b31af298db2d2b44f4059aa6982f1f222","kind":1,"pubkey":"655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca","sig":"15c00a83e8c3978b7feb64848b7edba5d05c18a6ca0d09cd6ceedd32ca05888f37f198a12c32bc41dda80eeba2d15e1c28db7c8be595bec5e0688268aee93208","tags":[["alt","A short note: Good morning."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.damus.io/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:27:14.603] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:14.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:14.724] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:14.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:14.846] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:14.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:14.967] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:15.027] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:15.088] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:15.148] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:15.209] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:15.269] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:15.632] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:15.994] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:16.418] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:17.203] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:17.747] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:17.989] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:18.196] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:19.479] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:19.480] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:19.480] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:19.480] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:19.632] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:19.692] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:19.753] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:19.813] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:19.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:19.934] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:19.995] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:20.055] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:20.116] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:20.177] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Good morning.","created_at":1759429599,"id":"e67f0dc4866a8e9b2742626c8a38618b31af298db2d2b44f4059aa6982f1f222","kind":1,"pubkey":"655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca","sig":"15c00a83e8c3978b7feb64848b7edba5d05c18a6ca0d09cd6ceedd32ca05888f37f198a12c32bc41dda80eeba2d15e1c28db7c8be595bec5e0688268aee93208","tags":[["alt","A short note: Good morning."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.damus.io/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:27:20.237] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:20.298] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:20.358] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.419] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.479] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.540] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.600] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:20.661] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:20.721] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:20.782] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.842] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:20.903] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:21.265] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:21.628] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:22.051] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:22.835] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:23.344] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:23.586] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:23.827] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:25.099] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:25.099] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:25.099] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:25.099] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:25.250] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:25.311] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:25.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:25.432] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:25.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:25.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:25.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:25.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:25.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:25.795] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hopefully without the tinfoil\n\nhttps://youtu.be/YLE85olJjp8?si=iAw0NqDZ4-BDNcAx \n\n","created_at":1759429600,"id":"1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"8d755f497463ddbd135d8855052a8c222405c0db27375adce88409a4898a21d4a9e3449ffd04c1e329ab9646e02433b373125f11865a29e18770bfc55ef77b18","tags":[]}] +[14:27:25.856] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:25.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:25.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.219] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:26.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:26.340] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:26.401] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Collector™:black_verified:\",\"about\":\"Following some feeds FYI.\\nGet the other #news !\\n\\nJust 👀 -> :boost: -> :boost_ok:\",\"picture\":\"https://social.cu2d.com/system/accounts/avatars/109/719/311/599/523/508/original/ae1e34af4dd00376.png\",\"banner\":\"https://social.cu2d.com/system/accounts/headers/109/719/311/599/523/508/original/bf379fdc822cbabe.jpg\",\"nip05\":\"Collector@social-cu2d-com.mostr.pub\",\"fields\":[[\"Verified\",\"https://social.cu2d.com/verify/collector.html\"],[\"Reports\",\"The most stupid ones I'll make public.\"]]}","created_at":1759429494,"id":"09d1c88f2c753a336d3a20ed0da38681b7325394d8e9c94c4b4750bf8e42aa9a","kind":0,"pubkey":"60c19b2e1ba8c7c562847320adfbcace1ec1878a1019645216e6405ead28f6fe","sig":"d3763c16f628e872cc3c3b00dfac3c1d7eef452efbdb7112893bba8c7a7f498a3a2069ab3a028a5588822780268b322ba7e278ce698e005817173510fab391ca","tags":[["emoji","boost","https://social.cu2d.com/system/custom_emojis/images/000/000/362/original/7d68789b0e7c2711.png"],["emoji","boost_ok","https://social.cu2d.com/system/custom_emojis/images/000/000/344/original/019cb7f6502256e9.png"],["emoji","black_verified","https://social.cu2d.com/system/custom_emojis/images/000/003/211/original/7fc70d06721c9196.png"],["proxy","https://social.cu2d.com/users/Collector","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.461] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429463,"id":"7fb5dd88caa855c025f29d54e9e7fb324ae04246d21757af3a56f43a719a1bb5","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"6862390222e1a5b8478626328022755b9d0a96bae1f0a4f2f19ca72cfc8f74ad8f38b4f78ff47b44aa9b943377bc02c3e4b844e2c30919cf1a5f97631c169b19","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:26.522] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:26.885] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:27.247] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:27.670] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:28.419] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:28.963] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:29.204] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:29.446] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:30.725] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:30.725] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:30.725] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:30.725] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:30.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:30.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:30.999] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:31.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:31.120] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:31.180] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:31.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:31.301] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:31.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:31.422] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:31.483] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:31.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.604] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.665] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:31.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:31.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"...\",\"display_name\":\"Martina\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429509,"id":"5852dc2ec63ef165e7cd4164e71e35a4069528c221d7a1c3420d316bc51338dc","kind":0,"pubkey":"037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f","sig":"e229a3695bd4c7c6adfe232a0094d309a27c1bf72d8d02489c90b747c69253d557d812ee3538ad541b040670850aa294fb3e59b1f8e98e2b568b68c76d0e47e7","tags":[]}] +[14:27:32.028] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"https:\\/\\/blossom.primal.net\\/e95cbada0fb78914fbaf66f4619c955ece507d775e1bb39c229391ad8741fd9e.jpg\",\"lud16\":\"Angelicah@primal.net\",\"about\":\"In Code We Trust- but only if we control it. \\nSatire n Memes. Encrypt everything.\\n\\nMeditate + Separate Money from State. \\n\\n×̷̷͜×̷\\n\",\"banner\":\"https:\\/\\/blossom.primal.net\\/7a83b03a0140a741ff978a0a11873a1504aea21941fbfeb7d230c06ce7ab7a1c.jpg\",\"display_name\":\" DagzTagz \",\"website\":\"\",\"nip05\":\"Angelicah@primal.net\",\"name\":\"Brie\",\"lud06\":\"\"}","created_at":1759429505,"id":"5676045c0ed903682b7124ccaf64e7cfa7e7ab0cf67fd1adfbeaac6974490fba","kind":0,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"4c604ef202f873678b51752e79ee9a3bfa932e651bf07bdfbc209fd388518bac52bf1254fbea34d1ae51c4520148e7053d780f468ec9344170e89814e0d7b212","tags":[]}] +[14:27:32.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"ultralizard19@primal.net\",\"nip05\":\"\",\"name\":\"\",\"about\":\"\",\"picture\":\"\",\"display_name\":\"Pamela\"}","created_at":1759429500,"id":"6a030a904181fbf0645962ab098fc6b8493b6789af56853fc5aca5df757a1317","kind":0,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"04c8368da48834622fb89b5a30fe918ab80737bfd5e9d43b9b8c923f8bbe2ca68ad0a9eb2c2a69e7d91fb45f299c5a0a7f25c1a7dd24142cca67aafbad9771e6","tags":[]}] +[14:27:32.149] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:32.511] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:32.874] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:33.261] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:34.046] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:34.589] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:34.831] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:35.073] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:36.351] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:36.351] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:36.351] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:36.351] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:36.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:36.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:36.623] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:36.684] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:36.744] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:36.805] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:36.865] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:36.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:36.986] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:37.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’d be such a plot twist if we found out Sydney Sweeney was Satoshi ","created_at":1759429605,"id":"2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"d3d5b96ddc819ada26eb7a36cf3cd6eb022ce9f8f1e7d459daaa03558d91d3df0f12e2a7c0126e222bc25288b0a4f3f23beda4ea4474e768d77f5557562c905c","tags":[]}] +[14:27:37.108] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:37.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:37.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.290] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.350] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.411] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:37.532] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.653] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.713] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:37.774] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:37.878] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:38.085] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:38.448] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:38.871] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:39.366] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"It definitely was. ","created_at":1759429603,"id":"c10f402ef7bedd1b390a4f741797defd5c64f815e274f3f3959ef4719a7b6662","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"1082591381f6a9b57173bec27ba50850249b642fc9a650ed382788d8d47de192c1748d9f8844d7af469789cd6da0351004e2149cb325ca67eac4c385c61f2a24","tags":[["alt","A short note: It definitely was. "],["e","de558be41da619edf952dfb83bb9c60f47f2e972d7b325968b1dbdd2409b254d","wss://henhouse.social/relay","root","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","dd6d5a4795062516691e32e2a54663c1f5fe87a118e65d4f570e83c12c751c52","wss://nostr.wine/","reply","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"],["p","52387c6b99cc42aac51916b08b7b51d2baddfc19f2ba08d82a48432849dbdfb2","wss://relay.nostr.band/"]]}] +[14:27:39.608] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:40.152] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:40.393] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:40.635] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:41.911] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:41.911] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:41.911] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:41.911] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:42.063] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:42.123] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:42.184] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:42.244] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:42.305] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:42.365] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:42.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:42.487] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:42.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:42.608] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:42.669] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:42.729] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:42.790] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:42.850] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:42.911] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:42.972] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.032] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:43.093] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.118] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.239] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"The Spectator Index\",\"about\":\"News, media and data from around the globe. Covering politics, economics, science, tech and sport.\\n\\n(mirror of @spectatorindex@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/989af181ec72081b5ffe3c6af603ba7bae1d4e5b903d76bf76b27d019f0ef3e3.png\",\"banner\":\"https://hell.twtr.plus/media/81a9084270758b9ef196e5718913be366afb4dacafa54b8cab3bf6dd27fca8ac.png\",\"nip05\":\"spectatorindex@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429516,"id":"179faf52c085ae60d28d215698e492f5ec8515c7963d3dd566e0afccd14b1476","kind":0,"pubkey":"ac813098dd803d0d0aee529f34b7db66c77659aa22bb53299cbfa3d92a1f7e82","sig":"1d2c7ea11d22af8f06fd61f86ad2e20bdc2b954c3a26d1884971baf4cc7d5a8b68a80d757c9005620884a0f6a4d3518c4e5fed71ffa65e03c5d644932b81ca13","tags":[["proxy","https://hell.twtr.plus/users/spectatorindex","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:43.300] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:43.360] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429657,"id":"f7571489447febb4e15e1147cc72fff44d031d7d6f1d3bcb2e4d5c6a9f185cd3","kind":3,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"6e94c8e7120847736b0374a5fb75fa2a1a62272f5ea27da2a8d88d765e97d96ae0260f75231359ed02595415ccaf668d5efb89f62749e672d02ade5e806441d6","tags":[["p","b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","bef514bd58c8ceea4beb9e6b84a8d983935f7be26f49e14df68098f1ba64156e"],["p","111647ac263ecb407f191dea6c5dc77ec22c99274da8a10a2c694d6965d03421"],["p","7744c38a5915be8ac8fee2cd615473da463b5fa81d8876a499c9f99921558bdb"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","cf473ebe9736ba689c718de3d5ef38909bca57db3c38e3f9de7f5dadfc88ed6f"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","8fb140b4e8ddef97ce4b821d247278a1a4353362623f64021484b372f948000c"],["p","ad9738030ab84c04ffaec64abadd6cc682cb3501d193a5ff1c94b90770915558"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","bad9867380f6f2b8f50d3ff869aaf75dc998797204a7c85a4bf6f8bb9fc07078"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","184dca27c18fec7d9e38e15552a6d5c2cd22741a7fe356fd13c4bd99c63594ee"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6d0aab5fa4dbf03612bb16466c9e6e102b6dcbb51251735f8f3b3f36f8136f75"],["p","38a8f31c3e46f488768757e0b93a26ac28451259bb4295ea3847b38088333a6c"],["p","cbaa0c829ed322c1551cb6619b4c08b9a26ac97ffb4e959205eec78ee9313245"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32"],["p","66bd8fed3590f2299ef0128f58d67879289e6a99a660e83ead94feab7606fd17"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","7d33ba57d8a6e8869a1f1d5215254597594ac0dbfeb01b690def8c461b82db35"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","b9ceaeeb4178a549e8b0570f348b2caa4bef8933fe3323d45e3875c01919a2c2"],["p","fcb651724ab55affc1130fd4cbbc6e5fe1e20c2b09b85941ecf10b7487f3c4ed"]]}] +[14:27:43.723] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:44.086] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:44.509] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:45.294] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:45.838] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:46.080] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:46.322] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:47.600] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:47.600] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:47.600] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:47.600] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:47.753] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:47.813] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:47.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:47.934] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:47.995] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:48.055] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:48.081] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:48.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:48.202] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd I think nostur on iOS.","created_at":1759429618,"id":"2d3313a310e5587f0ca2c86d0b53f73e9524764a03a617c457701e38c9960659","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"242e1f7cf57a1f07cb94cc4abe87ef75cfbbc3fd42e552f5836a3d04045804bca84115782228b5e1500263ca1d51558c79b3f57018d1865172905b3990823849","tags":[["alt","A short note: Nostrmo\nhttps://github.com/haorendashu/nostrmo\nAnd..."],["e","86552559aa78118abef2075ba49516ae2b2a06aa35a0aa19cce0529b54eb7dbe","wss://relay.primal.net/","root","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa"],["e","68070d6453ee390338376cc302d0b3ce5f58c48154fb15bc942c09ca56d14448","wss://wheat.happytavern.co/","reply","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb"],["p","cf8f07ebffbdce4976ea8ab830cfd6036ffb6203e67ba8eb7a9a448a742a6eaa","wss://theforest.nostr1.com/"],["p","b7274d28e3e983bf720db4b4a12a31f5c7ef262320d05c25ec90489ac99628cb","wss://nostr.land/"],["r","https://github.com/haorendashu/nostrmo"]]}] +[14:27:48.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif","created_at":1759429618,"id":"754ed436e118d21f538dee1ce6a3309e62b35eee221199881762acc84b85b16a","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"218c541442fc590ca120ac42a6a9d9173f7b641168f7287e1586545d71136fbfd7b44e033d6ff170221d0544dcdd0f0dbbbdf51b35f4f788db75191f232bf6a6","tags":[["e","b8df1e0630310de528fc1b583285c836a644f13906e8da6c5bbf873a699829f5","","root"],["e","c8a37890146f6fad8e9b73cce7c5b3fa966df7e522f54b6102d6136d95264f5c","","reply"],["p","f275ab37d64f6be0379a85ce5736060e164b136a08c7f1e78dea633abad84bfe"],["p","45f195cffcb8c9724efc248f0507a2fb65b579dfabe7cd35398598163cab7627"],["p","9f0bbd5b4dc7547496fcdb00feb631af638171e01e58e785b5dfd411779b33f6"],["r","https://media1.tenor.com/m/7NKcfuWuQ8EAAAAd/giggle-laughing.gif"]]}] +[14:27:48.323] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:48.384] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.444] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:48.505] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.566] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.626] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.687] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.747] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:48.808] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.929] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:48.989] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:49.050] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429657,"id":"f7571489447febb4e15e1147cc72fff44d031d7d6f1d3bcb2e4d5c6a9f185cd3","kind":3,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"6e94c8e7120847736b0374a5fb75fa2a1a62272f5ea27da2a8d88d765e97d96ae0260f75231359ed02595415ccaf668d5efb89f62749e672d02ade5e806441d6","tags":[["p","b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","6efb74e66b7ed7fb9fb7b8b8f12e1fbbabe7f45823a33a14ac60cc9241285536"],["p","cbb2f023b6aa09626d51d2f4ea99fa9138ea80ec7d5ffdce9feef8dcd6352031"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","e17e9a18635f80d472e6b49da910f244f2ed7437aec6bf227f85092066d67a6b"],["p","33b68d46e69e0fe145ceac12fec3ce552c61f972f348e13d343ff7956f97aa6c"],["p","bef514bd58c8ceea4beb9e6b84a8d983935f7be26f49e14df68098f1ba64156e"],["p","111647ac263ecb407f191dea6c5dc77ec22c99274da8a10a2c694d6965d03421"],["p","7744c38a5915be8ac8fee2cd615473da463b5fa81d8876a499c9f99921558bdb"],["p","dd35763b08908d07fc0da8ecffe5206d8fb349d9be5465b186f53eac1bb444a7"],["p","cf473ebe9736ba689c718de3d5ef38909bca57db3c38e3f9de7f5dadfc88ed6f"],["p","f8e6c64342f1e052480630e27e1016dce35fc3a614e60434fef4aa2503328ca9"],["p","391819e2f2f13b90cac7209419eb574ef7c0d1f4e81867fc24c47a3ce5e8a248"],["p","e4b67f9f7c0a1cce1c24ca9196f8e1446fcce17fdef5d5eb46a3929433ea4d91"],["p","b480a3f71f13017ddbdb1a045b95fa752d631108f52e7c51f2a171832a31d8af"],["p","8fb140b4e8ddef97ce4b821d247278a1a4353362623f64021484b372f948000c"],["p","ad9738030ab84c04ffaec64abadd6cc682cb3501d193a5ff1c94b90770915558"],["p","a9f8b3f2ac19cc06d5194dd1ac9314d4741a09777444986553926d9165181647"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","bad9867380f6f2b8f50d3ff869aaf75dc998797204a7c85a4bf6f8bb9fc07078"],["p","12cfc2ec5a39a39d02f921f77e701dbc175b6287f22ddf0247af39706967f1d9"],["p","184dca27c18fec7d9e38e15552a6d5c2cd22741a7fe356fd13c4bd99c63594ee"],["p","958b754a1d3de5b5eca0fe31d2d555f451325f8498a83da1997b7fcd5c39e88c"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6d0aab5fa4dbf03612bb16466c9e6e102b6dcbb51251735f8f3b3f36f8136f75"],["p","38a8f31c3e46f488768757e0b93a26ac28451259bb4295ea3847b38088333a6c"],["p","cbaa0c829ed322c1551cb6619b4c08b9a26ac97ffb4e959205eec78ee9313245"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","5e1a49baa20ef3daf90d0116c624b4c587d0bb10f35c106439e7f47f81884214"],["p","9ba8c688f091ca48de2b0f9bc998e3bc36a0092149f9201767da592849777f1c"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32"],["p","66bd8fed3590f2299ef0128f58d67879289e6a99a660e83ead94feab7606fd17"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","805b34f708837dfb3e7f05815ac5760564628b58d5a0ce839ccbb6ef3620fac3"],["p","7d33ba57d8a6e8869a1f1d5215254597594ac0dbfeb01b690def8c461b82db35"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","b9ceaeeb4178a549e8b0570f348b2caa4bef8933fe3323d45e3875c01919a2c2"],["p","fcb651724ab55affc1130fd4cbbc6e5fe1e20c2b09b85941ecf10b7487f3c4ed"]]}] +[14:27:49.413] RECV nos.lol:443: \":true}}","created_at":1759429622,"id":"1b3f0c9a12e41b899cc189fdf6bf9a0c3fe53dcc4d7c79f0656fdca8a61 +[14:27:49.775] RECV nos.lol:443: e7db4a0f0264a7a176f6dcd426cc66180651bc01bdfa9b77 +[14:27:50.198] RECV nos.lol:443: cb6853cd0ee15deee93"],["p","6d3b525b66dd3452a576aca51589162e84f63813374186b76957f000b2aedc42"],[" +[14:27:50.984] RECV nos.lol:443: db00b69948f4a48ec18faa12956f281c9f20390204a0901c"], +[14:27:51.528] RECV nos.lol:443: 0b23"],["p","41b93cde3bb1bfb51d287f0cc50161382b31aaf5f5a6ad0c090a99373d018bf9"],["p","04c915daefee3831 +[14:27:51.770] RECV nos.lol:443: ],["p","6aaed493c0de0cd56a123df8da +[14:27:52.011] RECV nos.lol:443: c05561b0c47c32e1450512b1"],["p","4d7842051782e0d3feb034d150adc2b6bae4ee3b49786793bffa468b6f5b96b3"],[ +[14:27:53.291] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:53.291] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:53.291] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:53.291] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:53.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:27:53.454] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:27:53.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:53.575] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:53.636] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:53.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:53.757] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:53.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:53.878] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:53.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","created_at":1759429619,"id":"a83bee75c0f66d35d1acc8d9d1b9e45a2288c83a25457dadadf632e7dd6110b7","kind":1,"pubkey":"fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","sig":"4f24bf9fc37d2649a43445bfce59a39476434c5a5d42ce092f86c3a4d657889d36e8f984f1af72a399774f78de92926f28449b8ec500171f069b14454d413fae","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif"],["imeta","url https://image.nostr.build/22711d65086529433d29f835eb123ead6fe86efd8b7401ce55e0c0daabded5d4.gif","x a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","size 2155034","m image/gif","dim 360x203","blurhash i7D]n]?1Xgx44m=v#tg3oh3ai^xJ=#%gI;ICMdxa$[pCrFD~r{xc%2%MNF0JMxk=O9%3wiInS}WByCx]Di9DMxNFx]%NRk","ox a4268172a540fc4ca50ac10627877278aabd4c2daab50e8680fd70219398762f","alt "]]}] +[14:27:53.999] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:54.060] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.120] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:54.181] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.302] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.362] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.423] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:54.483] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.605] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:54.665] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:56.443] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:56.443] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:56.443] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:56.443] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:56.595] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:27:56.655] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:27:56.716] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:27:56.776] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:56.837] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:56.897] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:27:56.958] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:27:57.018] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:27:57.079] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:27:57.139] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:27:57.200] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:27:57.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:27:57.381] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.442] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.503] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.563] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:27:57.685] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.745] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.806] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:27:57.866] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:27:58.556] RECV nos.lol:443: bdf6883c6f54b43a694975dff4e2c3b8f4b25f64ed7b6fb391d5d7 +[14:27:59.532] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:27:59.532] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:27:59.532] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:27:59.532] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:27:59.685] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:27:59.745] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:27:59.806] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:27:59.867] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:27:59.927] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:27:59.988] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:00.048] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:28:00.109] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:28:00.169] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:28:00.230] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"市しかないと思っとんのか","created_at":1759429620,"id":"ca397ac51250769aec4ceefe5b86aabccdf70adde24a21a26499af4b47281ea9","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"81a2ba8218fe2a1d0c9fdf351f74597519b075918faa0be1651404741ecca67dd77d4599b2cbb81f5735358a9f510c7250d4ba0087ced341fdd97e9dd6ca322c","tags":[]}] +[14:28:00.290] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:00.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.411] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:00.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.593] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.653] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.714] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:00.774] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.835] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.895] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:00.956] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:01.681] RECV nos.lol:443: bdf6883c6f54b43a694975dff4e2c3b8f4b25f64ed7b6fb391d5d7 +[14:28:02.850] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:02.850] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:02.850] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:02.850] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:03.072] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:03.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:03.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:03.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:03.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:03.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:03.400] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:03.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:28:03.521] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:28:03.581] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:28:03.642] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:03.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:03.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:03.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:03.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:03.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.065] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:04.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.187] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.247] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:04.308] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:05.032] RECV nos.lol:443: bdf6883c6f54b43a694975dff4e2c3b8f4b25f64ed7b6fb391d5d7 +[14:28:06.009] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:06.009] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:06.009] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:06.009] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:06.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:06.402] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:06.462] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:06.523] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:06.583] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:06.644] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:06.705] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:06.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:28:06.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:28:06.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:28:06.947] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:07.007] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.068] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:07.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.189] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.310] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.370] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:07.431] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.491] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:07.612] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:07.673] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev\":{\"read\":true,\"write\":true},\"wss://nostr-pub.wellorder.net\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://relay.snort.social\":{\"read\":true,\"write\":false},\"wss://relay.nostr.com.au\":{\"read\":true,\"write\":false},\"wss://eden.nostr.land\":{\"read\":true,\"write\":false},\"wss://nostr.milou.lol\":{\"read\":true,\"write\":false},\"wss://puravida.nostr.land\":{\"read\":true,\"write\":false},\"wss://nostr.wine\":{\"read\":true,\"write\":false},\"wss://nostr.inosta.cc\":{\"read\":true,\"write\":false},\"wss://atlas.nostr.land\":{\"read\":true,\"write\":false},\"wss://relay.orangepill.dev\":{\"read\":true,\"write\":false},\"wss://relay.nostrati.com\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band\":{\"read\":true,\"write\":false},\"wss://filter.nostr.wine\":{\"read\":true,\"write\":false},\"wss://relay.noswhere.com\":{\"read\":true,\"write\":false}}","created_at":1759429683,"id":"e93882bed686229be275d451aa7ca4b03d39df721ab3f9a57181b940862f385d","kind":3,"pubkey":"25d0867ea23312058afa3727332f51afef7566dbb7491812edf2eba9fd98189a","sig":"842797eb3806f51f04074b01eb847b6a95573ca4f5c16009587e55178dd8959f800bac69684e2e3fedcbf231a9c1723e36c2d6f27cf09bc9c9d745655d976938","tags":[["p","25d0867ea23312058afa3727332f51afef7566dbb7491812edf2eba9fd98189a"],["e","25e5c82273a271cb1a840d0060391a0bf4965cafeb029d5ab55350b418953fbb"],["e","42224859763652914db53052103f0b744df79dfc4efef7e950fc0802fc3df3c5"],["p","ac3f6afe17593f61810513dac9a1e544e87b9ce91b27d37b88ec58fbaa9014aa"],["p","84dee6e676e5bb67b4ad4e042cf70cbd8681155db535942fcc6a0533858a7240"],["p","1abdef52155dc52a21a2ac9ed19e444317f6cf83500df139fbe73c2a7ac78e2a"],["p","ede3d957774e5d5c79664b5b50f53170e9024d76c90d99fca9324a3cc9795382"],["p","ffe7daceb57342af434f1ff7607042db5ed4b9b90feb6fd460e0573d3487c006"],["p","2ef0fccfd5a55e36bc8be3a525c1ce97f20eabaa94e69d82febfd641d9480c35"],["p","0d7ceca9e000e711e263bc14a2216ab74968a9e903eba214a714300adede5a20"],["p","99270769ccbebc9bd6e0696ba3dc91d0112dcbf59961702b63c4371d6769c516"],["p","9140435bb4fe2d55ba8f678091c3486bb021508d5fb8801353bf19d2874d0928"],["p","58ead82fa15b550094f7f5fe4804e0fe75b779dbef2e9b20511eccd69e6d08f9"],["p","57a1cd892460cd2df98a5288a56b265d77779badf1420f7cc7922738b0d04a60"],["alt","Follow List"],["p","aea54bfc4365a62d8e3566e73adea9837f21de38de6468c3afba930ef3d63f84"],["p","c998a5739f04f7fff202c54962aa5782b34ecb10d6f915bdfdd7582963bf9171"],["p","86af32cf2e481f98ff9188c8ecaadf52d0b6601ac0ac207e85c74ac3c6bef356"],["p","99339916232201e19111f8f477fe4dc7ffc474e35d6366ec1de1037ea1b24165"],["p","60d53675f07dee9e7d77910efa44682d87cb532313ba66b8f4449d649172296b"],["p","d8a6ecf0c396eaa8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","af740d198babb8c7b82d0a4718eb354bb3f6af9a98639b85d4a5cf1371caba85"],["p","fc07b38da6112fbe6cd4e093b057cbed108692705181673f32d5d40eadead4d9"],["p","66f47e3dcfe5c9281b436bf4ae443c4893d3c1b17ce503223f8043d3bfbdfb2f"],["p","83d77dc5630cdae82b36a799cd9c0d0bad497f5bffedf469eb607e9015f05d64"],["p","d54c85fa6483639e306db3efa0f8c6bf3f79ca61df1fc58bbc3e9c9d1e8504f5"],["p","0cd00f38628f1ef135721df93d9584a40f3bb2cf43f68d301f021dd631c74fab"],["p","5468bceeb74ce35cb4173dcc9974bddac9e894a74bf3d44f9ca8b7554605c9ed"],["p","dab6c6065c439b9bafb0b0f1ff5a0c68273bce5c1959a4158ad6a70851f507b6"],["p","b98ded4ceaea20790dbcb3c31400692009d34c7f9927c286835a99b7481a5c22"],["p","0ffab7d9247132f14bcd38378b0acedc30d35e2b2670d89b7ae8c2d2c306af99"],["p","fef0255b80828ca8d34c34ed3a5cb9b2f823c594090577d12d00bc6798a9d3f3"],["p","d30ea98ea65e953f91ab93f6b30ea51eb33c506f87d49f600a139aef00aa9511"],["p","2754fc862d6bc0b7c3971046612d942563d181c187a391e180ed6b00f80e7e5b"],["p","268b948b5aab4bab0e5430ee49e3cff11776cf183df93b32159f9670ed541495"],["p","f1989a96d75aa386b4c871543626cbb362c03248b220dc9ae53d7cefbcaaf2c1"],["p","d1f3c71639ae3bba17ffc6c8deb1fdb3a56506b3492213d033528cc291523704"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","3602e3a41b34946d81c007fcf5ae0daae25997b4e04b107e82e56a090c0d9b81"],["p","3df7fcb356cf4f6c9d1625e04297e226714fc4b9a5440b71e5a99f8ddb550c1e"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","39cc53c9e3f7d4980b21bea5ebc8a5b9cdf7fa6539430b5a826e8ad527168656"],["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["p","d031f81cd1302f3251df240bb9d4000fda85269152bc38a42e5e6fac4c2592f5"],["p","6e0a1f4852bc8fa42b8047d60a81930d88904ca3f2acdfb5b8413ab8c9f444e5"],["p","2786c134148537aa3142222cccc1b6fcf4863643ca78a9625d91aa9748d0e478"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","05e4649832dfb8d1bfa81ea7cbf1c92c4f1cd5052bfc8d5465ba744aa6fa5eb8"],["p","fbbbf7c8f17b7a59a1b955f363939b74d5cd79f52556acb0712ce4f3bc1cca4a"],["p","e00d60341134d136a1dfc59f1bcb2fe2a9ce781f2cfb6bea249595bd4577c0ad"],["p","6a5e3cc17279cbdf051c06d96e3f843cdb296f351d8ca35a6a190c0ab90dbf9a"]]}] +[14:28:08.363] RECV nos.lol:443: bdf6883c6f54b43a694975dff4e2c3b8f4b25f64ed7b6fb391d5d7 +[14:28:09.338] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:09.338] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:09.338] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:09.338] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:09.491] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:09.551] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:09.611] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:09.672] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:09.732] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:09.793] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:09.853] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:09.914] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんか檻があって、捕まるとぶち込まれるけど、捕まってない人が檻の中の人タッチすると逃げれるみたいな","created_at":1759429640,"id":"50ef232680e428b2df198564dcfffd37fe001042ec84a90e9acfcdfb1578f83e","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"54f278e270dad6a9d76e702f28558ca4a35a3e38dfc83c66fad356ab73cd07ea9152aa12311f57741a1383a4cfeb8d62c8d720286834bb2953a41af68c212ac2","tags":[]}] +[14:28:09.975] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/938d22f80a8c580fa4018ab417532dac062e939e56273d07863915abd9a74674.jpg","created_at":1759429626,"id":"eac6fdc110e172140dc4895dce211308ec7045246f398e912a650938dc2bff44","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"9e1211291bf15f3b8cff630801bcc5eb6931f620ccb1ffcdf21c332a2dd51c6f2fab3fd20be963d4d7fa238a992b1f4897cc82f8d2552c194ba3acfd10f472c8","tags":[]}] +[14:28:10.035] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Amazing product!!! And the best \nthing, I payed with bitcoin. \nCircular economy folks! \n\n@SoapMiner \n⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️\n\n#bitcoin #nostr\n\nhttps://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","created_at":1759429625,"id":"4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"6304cfa268da8c04d4435a3ad30c336ea7faea5dc998bbeec2f958b42a0990890a7ea801de81f2573a0df921d43c4f46cbd5edec57e906317981b21782b20fd3","tags":[["imeta","url https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg","blurhash eULMYFrE^kVZ-:_MWVjut7WVTdR*X4X8R*%gX8Rjs:af^kxaIoWVRk","dim 3024x4032"],["t","bitcoin"],["t","nostr"],["r","https://image.nostr.build/0851215c9869b9c0d12a6add3ba2482dce0803ff685e243cffb41b099f8b4e2c.jpg"]]}] +[14:28:10.096] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:10.156] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.217] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:10.277] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.338] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.399] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.459] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.520] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:10.580] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.641] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.701] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:10.762] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:12.018] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:12.381] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:12.441] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:13.414] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:13.414] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:13.415] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:13.415] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:13.566] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:13.576] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:13.637] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:13.698] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:13.759] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:13.819] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:13.880] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:13.940] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:14.001] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:14.061] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:14.122] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:14.183] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.243] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:14.303] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.364] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.424] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.485] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.545] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:14.606] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.667] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.727] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:14.787] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:15.995] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:16.357] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:16.418] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:17.586] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:17.586] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:17.586] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:17.586] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:17.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:17.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:17.892] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:17.952] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:18.013] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:18.074] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:18.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:18.160] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:18.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I am in me hole 🤬","created_at":1759429650,"id":"44dc72db54de80a11ec83269576d1414b42014e4c960c8c0b46cb35a0f27a0d9","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"03952e5a96ce6bdb9552b222193bb0de16f116def9732f4127ab6bda0aae072afbdaaddd504a3de6ecd7ca699f0012a0a0ce9f8b99f093df2e791ad184814cbd","tags":[["alt","A short note: I am in me hole 🤬"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","b1e341ca74b38caf8f3d289070f4171312e338e63ada1811d19a18ad8a2e4f33","wss://nos.lol/","reply","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:28:18.281] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Drowning in apps and “privacy tools” lists?\nKeep it simple. \n\nA short, realistic plan with clear habits beats complexity. You don’t need to be a ghost or a spy—just consistent.\n\n#Privacy is security, and you can handle it.","created_at":1759429648,"id":"932dadd1ef77730f98d43859a730df93c6b7a68fa99e263d35ea9b9719a61bb3","kind":1,"pubkey":"70441609369d77ea553d805ee9af58b29e4c39d5b08b3956741839c2f3feebcc","sig":"f223361635c3ac1cc5a03510167ba9c7cdd493def02418b651f05c751099fa8204a95fc9b57be9996e4fc5b07157d90fb9b65acf8781722d2621802c1ad84ac9","tags":[["t","privacy"]]}] +[14:28:18.342] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:18.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.463] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:18.524] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.584] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.645] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.705] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.766] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:18.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.887] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:18.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:19.008] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:20.217] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:20.579] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:20.640] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:21.614] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:21.614] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:21.614] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:21.614] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:21.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:21.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:21.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:21.947] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:22.007] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:22.068] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:22.129] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:22.189] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:22.250] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:22.310] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:22.371] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:22.431] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.492] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:22.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.673] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.734] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.794] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:22.855] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.915] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:22.976] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:23.036] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:23.097] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:24.270] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:24.633] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:24.693] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:25.673] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:25.673] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:25.673] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:25.673] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:26.005] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:26.065] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:26.126] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:26.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:26.247] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:26.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:26.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:26.428] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:26.489] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:26.550] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the block hash of the latest Bitcoin block? Use an API again.","created_at":1759429658,"id":"97073aa52091156f6ca829472b7e08b07a89f41104a60e01b4c8e1452f26a1e3","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"b4910f4ece4bc87d202850c5373537a6d115de721ff33827fc0836d523884b48019793b73868ea0a63b86250d5516e0393db4f3e196cf851ae01dfc52563f082","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","47ca3b468842e9e7582d0bbe8cc6b0c5b5c3ed7688234c8339b63bc04b9d4c3c","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:26.610] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:26.670] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:26.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:26.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:26.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:26.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:26.973] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:27.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:27.094] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:27.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:27.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429524,"id":"7c82b0b7cde07f5331cac429948d6a7e20a3e2da51eb80e209950907c10f841c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"eca97c135b969d9146a000271970eaa8c0fb85d343ea6b38ea147c0ebe9aeeb5f0b2bfb3cf9871be160afd4d92ed40603e51cdcba1edf63925a48d6a4f298a30","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:27.275] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:27.336] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:27.396] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:28.569] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:28.931] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:28.992] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:30.161] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:30.161] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:30.161] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:30.161] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:30.313] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:30.374] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:30.434] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:30.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:30.555] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:30.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:30.676] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:30.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:30.797] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:30.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub1zzmxvr9sw49lhzfx236aweurt8h5tmzjw7x3gfsazlgd8j64ql0sexw5wy ⚡️⚡️⚡️🫡🫡🫡","created_at":1759429669,"id":"e67ed9f903e29fa0ce6015c9b2756ec6d99760dc7a9b163d40f82af7ee52a2c0","kind":1,"pubkey":"b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","sig":"49f5768df9e9dfbbf59e5d1179b097fba2c28849ecaa14667122e173f84b56d2067915f1365bfd3f5fa990b8fd0076b6bbaaa2dc8327c28d9e50cad53cd79d9f","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","","root"],["p","10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df"]]}] +[14:28:30.918] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:30.979] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.100] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:31.161] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:31.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.524] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:31.585] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:31.646] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:31.706] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:32.914] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:33.241] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:33.302] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:34.281] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:34.281] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:34.282] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:34.282] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:34.342] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,403\nBlock Hash: 0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf\nTimestamp: 2025-10-02T18:27:41.000Z\nTransactions: 4,006\nBlock Size: 1.55 MB\nBlock Weight: 3,983,958 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917403","created_at":1759429713,"id":"c68d9cf428056a83158bd670cf1b4fb0656e2610fd72081819f686000353cea6","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8b6a2a6ec9fcee9ecb1d78473824a103d3b545755d24cc2f54b14d74280ce3fdbf251d6bee4bf86289a1f156dfa994272bff330ddf28cbd84f9c8d0d59ebc4bd","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917403"],["published_at","1759429661"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf"],["new_block","true"],["block_height","917403"],["block_hash","0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf"],["block_time","1759429661"],["tx_count","4006"],["block_size","1626561"],["block_weight","3983958"],["difficulty","150839487445890.5"],["previous_block","000000000000000000017354043de595fd9752a49e36145721dcc94e1821e399"],["mempool_tx_count","8864"],["mempool_size","3403006"],["memory_usage_pct","6.2"]]}] +[14:28:34.453] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:34.514] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:34.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:34.635] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:34.695] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:34.756] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:34.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:34.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:34.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:34.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:35.059] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:35.119] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.180] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.241] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:35.301] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.362] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.483] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:35.604] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.665] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:35.725] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:35.786] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:35.846] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:37.055] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:37.417] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:37.478] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:38.453] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:38.453] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:38.453] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:38.454] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:38.612] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:38.622] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:38.794] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:38.854] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:38.915] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:38.975] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:39.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:39.096] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:39.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:39.217] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","created_at":1759429672,"id":"bc80c52be722d1d72cf014353457f4d4f8388025cad8dd0a648807c4cc944885","kind":1,"pubkey":"3ffac3a6c859eaaa8cdddb2c7002a6e10b33efeb92d025b14ead6f8a2d656657","sig":"02f74619781a92efc9558140d0c09404d692741baa56ac52f1557c4ed6ba68ee1932f8ea0dfe4a7a94e634b60d48eb61a197d84a3357170f76b9d162abfebb6f","tags":[["imeta","url https://image.nostr.build/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg","ox 94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413","x 785d61a82eaa1373d7761eec4b5f907515d6bdea9c45acee543f0e5459876ec9","m image/jpeg","dim 526x523","bh LuK-:_x]ozn2_NIUaKkC=]aJR+kr","blurhash LuK-:_x]ozn2_NIUaKkC=]aJR+kr","thumb https://image.nostr.build/thumb/94b15bf39ca8b5a0dab8b6aa22b7782c51d19bed70b7e05ea46e7bd0a0e3b413.jpg"]]}] +[14:28:39.278] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:39.339] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.399] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.460] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:39.520] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.581] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.641] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:39.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:39.944] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:40.005] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429714,"id":"bdd18347cf9a5d88dca734835ffa80cd2a53f8604fc1735ee5cdcdc396b6faf7","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfbc9a9490f2b518a39fde790205225703cf06eb9d7b3c1640dfdf497a10a0c295588c36257eb0531e184e4e82751d894f1391c162c4ab61290b898929156883","tags":[["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"]]}] +[14:28:40.066] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:40.127] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:41.334] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:41.697] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:41.757] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:42.733] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:42.733] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:42.733] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:42.733] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:42.885] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:42.946] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:43.006] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:43.067] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:43.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:43.153] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:43.214] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:43.274] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:43.335] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie pronikla na tanker z ruské stínové flotily. Zatýkala kvůli dronům nad Dánskem: \n\nDění kolem války na Ukrajině sledujeme v online přenosu. \nhttps://zpravy.aktualne.cz/zahranici/valka-na-ukrajine-online-prenos/r~441055587f3211f0b589ac1f6b220ee8/ \n#CzechNews #News #Press #Media","created_at":1759429682,"id":"32f499f26abace3f50957f207eb9abddb74f58df535abf09a7f30a19fb5f8c0a","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"341f4cdd4588fe05c9084be41bac781f087c4eec3dd88e000b06f10ec7731c10e11d1ad16f657e4a73f8975b81faba37966a7cfa9b4c55ebcd82adee7c16f14d","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:28:43.395] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"サッカーゴールがちだったかも","created_at":1759429675,"id":"124d83198a2ef19c4198bd326bbf9cfe05ea4a81fcdc3d316bf05e6ef5243001","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"ba9cc4d28103e55d02aa772c818e7b8354a03bb90dcca36f8e72b1f578bd713b653d4121efa82ba4c80cb127d40ed0e6189bd343944ea09eb22d79c8ddd42874","tags":[]}] +[14:28:43.456] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:43.517] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.577] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.638] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:43.698] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.759] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.820] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.880] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:43.941] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:44.001] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:44.062] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:44.122] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:44.183] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429714,"id":"bdd18347cf9a5d88dca734835ffa80cd2a53f8604fc1735ee5cdcdc396b6faf7","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfbc9a9490f2b518a39fde790205225703cf06eb9d7b3c1640dfdf497a10a0c295588c36257eb0531e184e4e82751d894f1391c162c4ab61290b898929156883","tags":[["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"]]}] +[14:28:44.243] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:44.304] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:45.513] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:45.875] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:45.935] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:46.910] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:46.910] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:46.910] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:46.910] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:47.061] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:28:47.122] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:28:47.183] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:47.243] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:47.304] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:47.364] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:47.425] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:47.485] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:47.546] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:47.607] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This. If it doesn't connect within a couple minutes close the app and try again.","created_at":1759429684,"id":"bd055b907a13b9079f8203ab60262a427a396158bc166ef2a68bbb63b4506ff5","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"7552f73202fe65516fef90b811e90e1f52c75e0d6a33f910d9bdfdee43e31029ef945d9d230a1190b5c557d2b6eab754e17b6e5e131ddb9a46fbeaf0b4efe426","tags":[["alt","A short note: This. If it doesn't connect within a couple minute..."],["e","5c9ed00645c15ba66d522aec63fe570fffb0fd0dd966e1d067972812069aac43","wss://relay.primal.net/","root","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["e","ff0d75ed686c3d50470f1968b185ac33aa8692f995a032061e6cd7020390f112","wss://relay.primal.net/","","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927"],["e","c4ab5ccbf1fa4c70a1ed9a8fcfe4ae5ee70e9334cc3dd6f1358991232bcb5bd8","wss://relay.primal.net/","reply","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"],["p","000000005e9dda01479c76c5f4fccbaebe4e7856e02f8e85adba05ad62ad6927","wss://relay.damus.io/"],["p","5729ad991a7e0cb88971ced2348758105790d51160a09b22d0d8f39ca762de11","wss://nos.lol/"]]}] +[14:28:47.667] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:47.728] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:47.789] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:47.849] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:47.909] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:47.970] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.030] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.091] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.119] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:48.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ChadF (mk.spook)\",\"about\":\"\",\"picture\":\"https://mk.spook.social/files/d2b2f567-72ff-437e-9868-362d4a384ae1\",\"nip05\":\"chadf@mk-spook-social.mostr.pub\",\"lud16\":\"chadf@getalby.com\",\"fields\":[[\"⚡\",\"chadf@getalby.com\"],[\"lud16\",\"chadf@getalby.com\"]]}","created_at":1759429551,"id":"024b120018fcf750efca32e432f12e65fcb23bf996f3663189f7788b46ab5a23","kind":0,"pubkey":"83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","sig":"cc84bb82d505d8a1362b93cd0339decab3eda4085a79805e3e2b60984aea9db8ede582848ceb4b5bf7c061d3bd745b09c630bfea97d87f543b971932f54d2c47","tags":[["proxy","https://mk.spook.social/users/9pd0k2r9xy","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429542,"id":"595fc8539f76f1c769d4f5dafa41b5785b10692e513a44d252022ac0b4d2c786","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"00249a3a52023aea04c18bab6dea90d5220831df801854d28c617aaf61df9aa9234b3532a64e076e913567e4e075f7cdf12fa71125877489195238b7c79e3216","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:48.300] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:48.361] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429714,"id":"bdd18347cf9a5d88dca734835ffa80cd2a53f8604fc1735ee5cdcdc396b6faf7","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfbc9a9490f2b518a39fde790205225703cf06eb9d7b3c1640dfdf497a10a0c295588c36257eb0531e184e4e82751d894f1391c162c4ab61290b898929156883","tags":[["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"]]}] +[14:28:48.422] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:48.482] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:49.691] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:50.054] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:50.114] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:51.090] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:51.090] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:51.091] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:51.091] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:51.243] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:28:51.303] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:28:51.364] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:28:51.424] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:51.485] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:51.545] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:51.606] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:51.667] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:51.727] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No right or wrong way, just do whatever works for you.","created_at":1759429692,"id":"9e376478b654c4865c67e0014b90d93c2f557eb966d9c9fefc83a5299061a8b3","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"d8acfffb9aa39f66a04584a72cce0e85f255344a8656220c6d5934ef5d80349dd1d6175f90f3e734f225dc8ebdbd5dcd700938d019c3d64832778429095fea83","tags":[["alt","A short note: No right or wrong way, just do whatever works for ..."],["e","516b4a3165dee55aca049634b1cf11af78ba87e0e015fe2469d775cf1f551e6d","wss://nos.lol/","root","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847"],["p","94c421f179fcfce054c6ece2181b6af091403bd9436de95b4bd28198a2ea4847","wss://nostr-03.dorafactory.org/"]]}] +[14:28:51.788] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah... thank god its automatic. It never stops. Lol ","created_at":1759429690,"id":"3fb166a6d2dcf8a1822fdeac1f7270f6c2ac16f300e1444d65e4bc65ec2fe36f","kind":1,"pubkey":"edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","sig":"de1a7a1aec47282b50eb1117683c5eb043800e918287d41ed51f717df289ed0605dc2be9d9f24279ca4f50702603c918e0a736f22ca4a6cd926406a4ecb874af","tags":[["alt","A short note: Yeah... thank god its automatic. It never stops. L..."],["e","c53eca8edcaf208852b7c7913f35f16c1859f2c858e76e22df681c8b483a5481","wss://relay.nostr.band/","root","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["e","d877ff570536d96c90df5133afae2f49f3d6c68da077d0cee0e1bd08e4c2994c","wss://nostr.azzamo.net/","","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80"],["e","2d7a8ab8ebe7a30b87c88e089c33bce24eff2fe3f651b191437610c202cb2f13","wss://relay.nostr.band/","reply","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826"],["p","edc615f59aa80e250fc00df64685a32cc08854c28d246f97c32ac5c9f3bb4c80","wss://nostr.bitcoiner.social/"],["p","5b72ee50d6f11a2d1d68c6b76aa01eb9164d429ced93a747bb1d045fc3311826","wss://filter.nostr.wine/"]]}] +[14:28:51.848] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:51.909] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:51.970] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.030] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.091] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.152] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:52.212] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.272] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.333] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.393] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:52.454] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:52.515] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:52.575] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429714,"id":"bdd18347cf9a5d88dca734835ffa80cd2a53f8604fc1735ee5cdcdc396b6faf7","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfbc9a9490f2b518a39fde790205225703cf06eb9d7b3c1640dfdf497a10a0c295588c36257eb0531e184e4e82751d894f1391c162c4ab61290b898929156883","tags":[["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"]]}] +[14:28:52.636] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429703,"id":"99be9ae787a102cbe14c2545937e162243f0bdc8b785fe8500959777e2587ad1","kind":3,"pubkey":"f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5","sig":"2c5bbc429f8cad3d2d0ef43cf33e77bc619b569dbae1fe9a01161641f52c85feaf8937e791d351556d8cf6ccfe57b570b34fa460d33175dfd90a1f8e08486586","tags":[["p","1e978baae414eee990dba992871549ad4a099b9d6f7e71c8059b254ea024dddc"],["p","b970095f84ab487f90bf08f4834c570fba5bf9eba0d4c2df8bfe1f0c1e12aa87"],["p","64e9bb262ee95f2e760fae20808563cc1077cc121c14d19f984c76dc11b59e5d"],["p","2385d0d8e40468afdd954493f3c2b854a124ccbc7dbd9e7b35726c9484c54da2"],["p","4c522cb776898f3d81ecb65335c7301a11166c93bbcbae4b4a723b34d6aa0e9c"],["p","850c06096206411a723b4e35e9af5604f292bcda68a0870ef0c3560be888a579"],["p","69469380b9dd7c7d25a2c04bebbfab86ae7ffb5fbbd4f84fd69b576a226db1e3"],["p","f7be61760ffb8fd22055733b4f01795e8b6bd7ee56063703bf178c597ecd05e5"],["p","02938f55bd3f6f271745cf8d45e57bc214af10473c6208599aee57b15d6e9e88"],["p","c5683bfaedbf58f7a2b9bb4a76132bbb31bb0a4e28f7db077adbc4ad7c8100b0"]]}] +[14:28:52.696] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nostr.wine\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://nostr.land\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true}}","created_at":1759429701,"id":"c048b4d48e371dea7bb7f764a6ba8acca8b4352822472dd4f1e3fc95ff4a55ae","kind":3,"pubkey":"5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e","sig":"2617c175b11e5f032b0ec1bb9f9e7b7cce93daba0ca1b08b8819b8a523bb42094ba24c683e79fadcb741c3a63cb167faa5e6640505124eb9478221109c33cfbe","tags":[["p","3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"],["p","5b5d33650981402c496acb664d1cc4004f1f409783daa5aca97308760d51d41e"],["p","4c800257a588a82849d049817c2bdaad984b25a45ad9f6dad66e47d3b47e3b2f"],["p","ce1bf9ad92164df227bfcab2813193c60eb4021d35bf4bbbc6fa24c560d0f3e9"],["p","166fe0f534729a6b5f501a3da62f8987e058b2bc8c76a5e762c95047914865eb"],["p","db8f291dcf949373f5224070cbef4fab80b9a8d3434246aca1fe34114cc51dd0"]]}] +[14:28:53.870] RECV nos.lol:443: 2f6db84bbcac64467642b7fa4314dbb"],["p","decf2ae424d7e66f49a8377e573b0fd38e5209f5d895571ab6dc0caf30 +[14:28:54.232] RECV nos.lol:443: 63da8f04cbbf6c08c80d20b1"],["p","83e818dfbeccea56b0f55 +[14:28:54.293] RECV nos.lol:443: 76b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","76c +[14:28:55.897] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:55.897] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:55.897] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:55.897] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:55.957] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:56.069] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:56.129] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:28:56.190] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:28:56.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:28:56.311] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:28:56.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:56.433] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:56.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:56.554] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Problem is shipping = Dox your home address. We need to fina a way to decouple this stuff.","created_at":1759429700,"id":"d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"b6f6fca9127c5db7e4ac67e0b7ee2fdbadb7c82ab994d422b8c404e2fc1f70e9f8af745d6825b585a4b32a8569780882280193c8db1633cf2be9ead6eeb57cfc","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6c9e01fbb0ca19f897c294137ad4d4ed5a0c581c7e63a9cacbd0de762aad726f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"]]}] +[14:28:56.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Holy shit. I love that machine","created_at":1759429692,"id":"8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","kind":1,"pubkey":"de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a","sig":"3ab8658b2821b6f7664fb2787881cf242f9b5edb2e5ba3905882811567264f00679850d33e75f7b74c4b14964385af6857414d05510ea4b4c5a473cfb43abcda","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:28:56.674] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:56.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:56.796] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:56.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:56.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:56.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:57.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:57.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:57.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:57.220] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:57.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:57.341] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:28:57.825] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:28:58.619] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:28:58.619] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:28:58.619] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:28:58.619] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:28:58.771] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:28:58.781] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:28:58.842] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:28:58.902] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:28:58.963] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:28:59.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:28:59.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:28:59.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:28:59.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:28:59.266] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Don’t forget to tell others about bitcoin. They’ll hold you accountable either way in the future anyhow.","created_at":1759429704,"id":"7444d7becc08b3859b54c3450921bdf6d6b50968b927dc61994692b0f232337a","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"53d81ca29b3e6ed35a9c4862ffbe06eb619dd0ed8ea7f63edc925de6358e2249ebd95ed32d246261977f87bde27811bd98bfbe1aae2dfc3a962c45d8141f5feb","tags":[]}] +[14:28:59.326] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:28:59.387] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.447] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.508] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.569] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:28:59.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.811] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.872] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:28:59.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:28:59.993] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:00.477] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:01.271] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:01.271] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:01.271] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:01.271] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:01.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:01.484] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:01.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:01.605] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:01.665] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:01.726] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:01.786] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:01.847] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:29:01.907] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:29:01.968] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I believe you nat have been misled. For research, videos with the tag \"male solo\" should help. ","created_at":1759429708,"id":"375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","kind":1,"pubkey":"19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","sig":"9c3c9fdf6a94fcff39db61f2788ab6a4e095660d63410b6fabe32fd3d500a64f193bf2daab90b4fb5fb6f2e0751ae7e6514f52413cde384fa0db91d0215843fc","tags":[["alt","A short note: I believe you nat have been misled. For research, ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://nostr.wine/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:29:02.028] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:02.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.149] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.271] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:02.392] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.452] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.513] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.573] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:02.634] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:02.694] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:03.143] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:03.936] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:03.936] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:03.936] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:03.936] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:04.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:04.158] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:04.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:04.279] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:04.340] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:04.400] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:04.461] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:04.521] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:04.582] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:29:04.643] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:29:04.703] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:04.764] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:04.824] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:04.885] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:04.946] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.006] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:05.067] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.127] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:05.309] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:05.370] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:05.430] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429743,"id":"004c93f67ebfd9c7d43fb9e09b5c5f11a95fd717e3694bd8cf723fd67ffcf126","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"70982343f042bd4bbab478a4f291f7fa43537a22c6d19876b730683ac4165e975883951ea26adc611a6efd1855951a8fcf3a7adc5978ca521192f86634a2e572","tags":[["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"]]}] +[14:29:05.914] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:06.707] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:06.707] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:06.708] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:06.708] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:06.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:06.959] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:07.020] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:07.080] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:07.140] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:07.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:07.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:07.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:07.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:29:07.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Work out your own salvation. Do not depend on others.\n\n#buddha #hindu #quotes #wisdom #spirituality #philosophy","created_at":1759429709,"id":"4fd5e234f52c63171b96b79f8545168277bffe51e90e3caff9769a65bffff674","kind":1,"pubkey":"5c7d484b5dc652992510b358dba3ad0b5594ac668e26a053982d4a3ce1ba5414","sig":"b1820073c3774ef8c51937e8787d4163746158e592538621361b836dc78c432fe0aa27bf17448d3e280009089ed3977a0904d6bdd61d057410195dd1905843d2","tags":[["t","buddha"],["t","hindu"],["t","quotes"],["t","quote"],["t","thoughts"],["t","wisdom"],["t","philosophy"],["t","spirituality"]]}] +[14:29:07.504] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:07.564] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.625] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.685] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.746] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:07.867] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:07.988] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:08.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:08.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:08.135] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:08.195] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429743,"id":"004c93f67ebfd9c7d43fb9e09b5c5f11a95fd717e3694bd8cf723fd67ffcf126","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"70982343f042bd4bbab478a4f291f7fa43537a22c6d19876b730683ac4165e975883951ea26adc611a6efd1855951a8fcf3a7adc5978ca521192f86634a2e572","tags":[["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"]]}] +[14:29:08.679] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:09.476] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:09.477] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:09.477] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:09.477] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:09.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:09.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:09.750] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:09.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:09.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:09.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:09.992] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:10.053] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:10.113] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:10.174] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917403\nWeight: 3983958\nhttps://thebitcoinblockclock.com/blockstr/0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf.png","created_at":1759429719,"id":"980f8539c8a67035d49853b0c0a5db8650e4c41c70a7a914439745baf89b357d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"5ae1609e9571edb064780575097d6115d88ba6d25986f4ba66b553f08f279041348e508fa9999bf6c3b38b7c7758b4041ee61020e2b1cec736684b5a87e7a034","tags":[]}] +[14:29:10.235] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:10.295] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.356] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.416] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.477] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.537] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:10.598] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.659] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.719] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.780] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:10.840] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:10.901] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:10.961] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429743,"id":"004c93f67ebfd9c7d43fb9e09b5c5f11a95fd717e3694bd8cf723fd67ffcf126","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"70982343f042bd4bbab478a4f291f7fa43537a22c6d19876b730683ac4165e975883951ea26adc611a6efd1855951a8fcf3a7adc5978ca521192f86634a2e572","tags":[["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"]]}] +[14:29:11.444] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:12.238] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:12.238] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:12.238] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:12.238] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:12.390] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:12.451] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:12.511] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:12.572] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:12.632] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:12.693] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:12.753] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:12.814] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:12.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:12.935] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:12.995] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:13.056] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.142] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.202] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.263] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:13.323] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.384] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.444] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.505] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:13.566] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:13.626] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:13.687] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429743,"id":"004c93f67ebfd9c7d43fb9e09b5c5f11a95fd717e3694bd8cf723fd67ffcf126","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"70982343f042bd4bbab478a4f291f7fa43537a22c6d19876b730683ac4165e975883951ea26adc611a6efd1855951a8fcf3a7adc5978ca521192f86634a2e572","tags":[["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"]]}] +[14:29:14.170] RECV nos.lol:443: 5cbbd"],["p","fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52"],["p","ad9738030ab +[14:29:14.968] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:14.969] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:14.969] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:14.969] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:15.190] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:15.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:15.311] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:15.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:15.432] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:15.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:15.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:15.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:15.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:15.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yessir ✅ followed \n\n","created_at":1759429721,"id":"2896e1b671e73097529fbff6619732040d5b38a2c84c5a040b78bc1259f4cbd0","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"fcbad4324352fc5af854fd0eb20215353de9fdd44bc24904e31051fb71651dbb415161d484aa4d9fe510ce4776af86b5463f6afd86f129282090f10d13dfe663","tags":[["p","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"],["e","0b22d89c3d6ed018d38e4b84ff8d2e7340f39463ddc0e84a52e56975482eaafa","","root","b6dcdddf86675287d1a4e8620d92aa905c258d850bf8cc923d39df1edfee5ee7"]]}] +[14:29:15.795] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:15.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:15.917] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:15.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.038] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.099] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:16.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.220] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.341] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:16.401] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:16.462] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:16.764] RECV nos.lol:443: 89d7fd1b0fb85aa6622b880e8c5957b5becd705cc7852cfb5 +[14:29:18.343] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:18.343] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:18.343] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:18.343] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:18.494] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:18.505] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:18.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:18.626] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:18.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:18.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:18.808] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:18.868] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:18.929] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:18.989] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:19.050] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:19.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.171] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.232] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.292] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.353] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:19.413] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.474] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.534] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.595] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:19.655] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:19.716] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:20.811] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:20.812] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:20.812] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:20.812] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:20.963] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:21.024] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:21.085] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:21.145] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:21.206] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:21.266] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:21.327] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:21.388] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:21.448] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:21.509] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:21.569] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:21.630] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.751] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.811] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.872] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:21.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:21.993] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:22.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:22.114] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:22.174] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"website\":\"\",\"about\":\"Go to https://use.foldapp.com/r/HEWFATN9 to get started with FOLD today\\n\",\"display_name\":\"\",\"lud16\":\"atheniankitten48@zeusnuts.com\",\"name\":\"zerofivr\"}","created_at":1759429566,"id":"2e1c10bda2f7779483e60437e081ad98c6b27dfad2792f45ee8c933dabf73ae3","kind":0,"pubkey":"1e4427758ef3565606c3344a2a7e4bda61ab57045804097d7150c3380b4ef9d1","sig":"ff304518a51b1eb85181f446f5c27f33a41c9429462f667e8c2675f24f388717f9f13cf3b72d6505252fa364b72cdc253b929f62de04e4cb04a976a1c051f12d","tags":[]}] +[14:29:22.235] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:23.273] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:23.274] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:23.274] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:23.274] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:23.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:23.578] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:23.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:23.699] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:23.760] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:23.821] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:23.881] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:23.942] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:24.002] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:24.063] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:35 @ 917,403","created_at":1759429724,"id":"f1040d1b0ec51e190d65603fab1030c4f0cde0d656660ed9616ad9971416469c","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"9aee72b5aa122e0f68ddf0fc0459c277eea998188c3e5e27b846a352c139264d4243dbf9c870fe7b89068269cbacca11d0bc14f5672bcd167bbe2e62e309eb88","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:29:24.123] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:24.184] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:24.245] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.306] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.366] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.427] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.487] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:24.548] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.608] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.669] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.730] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:24.790] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:25.958] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:25.958] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:25.958] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:25.958] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:26.109] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:26.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:26.231] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:26.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:26.352] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:26.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:26.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:26.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:26.594] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I was like oh cute it's cleaning it's belly, then it moved and I was all nonononono 😂😂","created_at":1759429733,"id":"0756efbdd55c9aa0b81ffbc5e1803eeca9b956ba000f655bd7136882480b2a3b","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"a34963bf3d1e678c019815dc3021884eef57cfb69203528f09fa6b9abd759f7e4759a8eca711b84a4c74582540e88e049c971def9837834bcef60cead64dce8f","tags":[["alt","A short note: I was like oh cute it's cleaning it's belly, then ..."],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","f45caeb1cf6a41dc3b9bad8c24348443f52144c69408c379c225a9cef65ae3e8","wss://nos.lol/","reply","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","7ed7d5c3abf06fa1c00f71f879856769f46ac92354c129b3ed5562506927e200","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"]]}] +[14:29:26.654] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"マケイン8巻読みながら\nかーっ!\n見んね杏奈!\n卑しか女ばい!\nを連呼するボットになってる\n","created_at":1759429727,"id":"c9f0f90718e6baca4a92d673505a000223471e6356f476e230ad5393f44358a5","kind":1,"pubkey":"269e6f57aa9a200c814e6b98721819dde038ca60c0390b87b658d300ab6d0d04","sig":"664b8951fd2ab1fb82b561f738ce12d60bca2ec603a08ff17e799955dc36f331a2aed2868ee610754262833f67f84d0647750a2232aaa4252bd8d12317c48cc9","tags":[]}] +[14:29:26.715] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:26.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:26.836] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:26.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:26.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.078] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:27.139] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.199] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.260] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.321] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:27.381] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:28.356] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:28.356] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:28.356] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:28.356] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:28.514] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:28.525] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:28.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:28.646] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:28.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:28.767] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:28.828] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:28.888] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:28.949] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:29.009] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:29.070] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:29.131] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:29.191] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.252] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.312] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.373] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.433] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:29.494] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.615] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.676] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429644,"id":"7320ed9fc55652e3aa2f3e852f5195d55143828be17c0e5c1754248b7ecd6df6","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"15ccb64b0a1d29d0d28c931053ccf7057e4c00b9c7cb964069c1a509c4e26ee9b71b1073a739c49c6d06e9111746bc7e96c6437a68243774f3519155e0864c86","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:29.736] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:30.708] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:30.708] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:30.708] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:30.708] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:30.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:30.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:30.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:31.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:31.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:31.162] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:31.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:31.283] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:31.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"They'll backtrack. We need real solutions, not Band-Aids on top of Band-Aids.","created_at":1759429738,"id":"35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","kind":1,"pubkey":"55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","sig":"511bb0ecd310003032a25ce3ca087d2501ef20c46becd7f4d806cea19769bcb69945e2e55d988ed04dc32d23aa1bb39ba8ca7507be22aaf91496ef7fb3ce3027","tags":[["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","","root"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","","reply"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"]]}] +[14:29:31.404] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy and now?","created_at":1759429735,"id":"badfc4400279ec4e8d36bc933780f319f236ed337c4ca0ef8dc2ba5fcd064e2e","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"ac93c480db7c4bf02f7e011ff1afacc2fe28d5d435dd594d6d752634f70c3c521e3e0df61ec5918d315d427155029679eca2060a446c70ec8c156ca3ac02f4e7","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","2512717f4b4945686af35addf2a775f20a67a2541a5cb622c3c31d7c5f96a5fc","wss://relay.primal.net/","root","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:29:31.464] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:31.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:31.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:31.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:31.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:31.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:31.828] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:31.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:31.949] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:32.010] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:32.070] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:32.131] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:33.104] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:33.105] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:33.105] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:33.105] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:33.256] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:33.267] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:33.327] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:33.388] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:33.448] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:33.509] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:33.569] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:33.630] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:33.690] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:33.751] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:33.812] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:33.872] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:33.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:33.993] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.115] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.175] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.236] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:34.297] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.357] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.418] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:34.478] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:35.455] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:35.455] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:35.455] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:35.455] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:35.607] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:35.668] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:35.728] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:35.788] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:35.849] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:35.909] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:35.970] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:36.030] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:36.091] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:36.152] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Join nostr:nprofile1qyxhwumn8ghj7mn0wvhxcmmvqyv8wumn8ghj7urjv4kkjatd9ec8y6tdv9kzumn9wsqzqkcpsw4kc03j906dg8rt8thes432z3yy0d6fj4phylz48xs3g4373hv8n6 and me for episode 131 of nostr:nprofile1qy88wumn8ghj7mn0wvhxcmmv9uq36amnwvaz7tmwdaehgu3wvf5hgcm0d9hx2u3wwdhkx6tpdshsqg9dn4pzq07jfq829ewyceze8gp8wz9whc4s92nqh4a36end4fds35xl9mtm tomorrow, Friday – October 3rd at 5pm ET (UTC -4)\n\nOur guest this week is nostr:nprofile1qyt8wumn8ghj7ct8vaezumn0wd68ytnvv9hxgtcpz9mhxue69uhkummnw3ezumrpdejz7qpqwf4pufsucer5va8g9p0rj5dnhvfeh6d8w0g6eayaep5dhps6rsgshcqyxr , creator of nostr:nprofile1qy2hwumn8ghj7un9d3shjtnyv9kh2uewd9hj7qghwaehxw309aex2mrp0yhxummnw3ezucnpdejz7qpq0r8xl2njyepcw2zwv3a6dyufj4e4ajx86hz6v4ehu4gnpupxxp7s85uvay who joins us to discuss that, web-of-trust, and much much more\n\nSet your blockclocks!\n\nThe show will be streamed live on zap.stream/pcr and will also be available on Nostur, Fountain, and Primal","created_at":1759429738,"id":"38ceb6be096273d173df7d73231bdd980d4bb323eabd3836e81c85b89e93c83e","kind":1,"pubkey":"b83a28b7e4e5d20bd960c5faeb6625f95529166b8bdb045d42634a2f35919450","sig":"c6b0c38d99e1314ecaffb2da6885ac55d266514616a3209d4ec47b4f0573ba7b2bdb3732a2bf1fa8f4b8772f04f7dbf09d61bfe74418a7647260c484086e899d","tags":[["p","5b0183ab6c3e322bf4d41c6b3aef98562a144847b7499543727c5539a114563e","wss://nos.lol","mention"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d","wss://nos.lol/","mention"],["p","726a1e261cc6474674e8285e3951b3bb139be9a773d1acf49dc868db861a1c11","wss://aggr.nostr.land/","mention"],["p","78ce6faa72264387284e647ba6938995735ec8c7d5c5a65737e55130f026307d","wss://relay.damus.io/","mention"],["r","wss://nos.lol/"]]}] +[14:29:36.212] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:36.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:36.333] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:36.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.454] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.575] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.636] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:36.696] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.757] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.818] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:36.878] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:37.851] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:37.851] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:37.851] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:37.851] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:38.003] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:38.063] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:38.089] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:38.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:38.210] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:38.271] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:38.331] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:38.392] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:38.453] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:38.513] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に線で囲い書いてた","created_at":1759429743,"id":"ee6651f570e07c08dd586694570109f636f57057dcea938e26f155fc005ffe43","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"6e792e286d30bdc8aeb6bb8859850d9f5add0a78fa427446333acc7fba96ad12575ab6e5865793874ea4a33e0f3fbcab3508442d99107c75ee1b01845dcd5289","tags":[]}] +[14:29:38.574] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:38.634] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:38.695] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:38.755] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:38.816] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:38.876] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:38.937] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:38.997] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:39.058] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:39.118] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:39.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:39.240] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:40.215] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:40.215] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:40.215] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:40.215] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:40.366] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:40.427] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:40.488] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:40.548] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:40.609] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:40.669] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:40.730] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:40.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:40.851] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I’m more of a Casio guy myself. \n\nWhere’s my Casio fam at?\n\nhttps://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","created_at":1759429752,"id":"674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"3d03211cca1f087b4f704d33a3899df99efa948132faa46607f9c9084b8fc3895f188379e108ba8e909ac4c3dbbb360a165104c026c906bb839e604b988c7043","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["imeta","url https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg","blurhash edKnC:%MsmofWC~qxukCj[j[.8M{M|jZn%M{M{s:offkIUxut7WBbH","dim 3024x4032"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["r","https://image.nostr.build/6ead4656b08a0ec0eaee6c23f70d5909738730f9236ee75e2627b0dc0b3fb600.jpg"]]}] +[14:29:40.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"What the hell 😲\nI thought you have to hit it, this guy is making sweet love to it","created_at":1759429748,"id":"1ff790594eb8c6174a67a7cb16e2262483fe0773734cc7b88e4bf85ac297924a","kind":1,"pubkey":"9e3ac1af5989f25ae34dcc1055ffe2c8df2c922f1fee775e4bb07e55e18cc1d9","sig":"d0b2ef9277d2acc66535d183b455f799971b4a252d55cc3334e17502e303aedcd2889a3f1e65000b118c36832dd361cc4f13a28e77dafb9072fd67d1c57bd6ed","tags":[["alt","A short note: What the hell 😲\nI thought you have to hit it, thi..."],["e","ada7b251bdb65a42bb9aee9d036dd71a1eb18620e5c41c5744397c7285a2bce7","wss://premium.primal.net/","root","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc","wss://aegis.utxo.one/"]]}] +[14:29:40.973] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:41.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:41.094] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:41.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.215] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.276] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.397] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:41.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:41.639] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:42.610] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:42.610] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:42.610] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:42.610] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:42.761] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:42.822] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:42.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:42.943] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:43.004] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:43.064] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:43.090] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:43.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:43.211] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:43.271] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:43.332] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:43.392] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:43.453] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:43.513] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.574] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.635] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.695] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.756] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:43.816] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.877] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.937] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:43.998] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:45.275] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:45.276] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:45.276] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:45.276] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:45.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:45.558] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:45.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:45.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:45.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:45.800] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:45.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:45.921] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:45.981] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You don’t understand what I’m saying and I don’t understand what your saying \n\nlol \n\nIt’s ok \n\nI was just pointing out that the people running the United States are all part of the pedo community \n\nSomething needs to be done about it \n\nJust don’t know what to do or where to start \n\nConsidering it goes all the way to the top ","created_at":1759429762,"id":"ebd372ef0483738d82d3e650791c9ba2eda0e6cef5d746561d128c1fbe85f30d","kind":1,"pubkey":"baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b","sig":"2f035e864233da5a5a0b9ae6cd95dd13116960f6a7779beba17fad91654cae9ea223bacc58950cd5006e9ef16557f83525ffec5d594e75e21228030b66b2c35f","tags":[["e","6974827a2020ae84c95cde2d438fc3dca890d3ff581a0fd5055f5093cfb8859a","","root"],["e","e0cf10fa74c820705f3047783a6bb899c4ff5a628feaecd822598e4d3b3c52c8","","reply"],["p","baeb862f3318390ec5af5c9db64ae5ddb2efc1a97db54c6550656bfa2dcc054b"],["p","b3d2e258109780aff68b5cf0c2f262497fd7137bc9f9fe546ec6d3bfc126a9f3"],["p","a87b402ac081c8849b9d5bd4e39f2287f25709d3e3f79e784af1e8b38fefbdf1"],["p","855746f626a255a687f148fbfe8a1e97c4e2d08f62c2149c599097e138a377a8"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:29:46.042] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Unfollow the people posting it. Follow those who post what you want to see.","created_at":1759429758,"id":"b2b62eaca4c5d245b00f3d360275d1288963fae5fa96fcc50a4a94e3a30310ac","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"1e6ece6b0ac0a93dbe79028f40a7c6defc366d513e988ecb2d4864bec32717b291e40fb8aceb94d097913d7d17b20a9196124227a3b4ea8a18ba9dacb443c290","tags":[["alt","A short note: Unfollow the people posting it. Follow those who p..."],["e","c218f8f002246394e43c81398e1031d9a3bd28bf5115ee972faaf140421a43df","wss://relay.primal.net/","root","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e"],["p","53e480eca8ffbe272e59b7c7e1a0b3b2c95479d7ba00fe1c0254e907a6c3c75e","wss://nostr.bitcoiner.social/"]]}] +[14:29:46.103] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:46.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:46.224] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:46.284] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.345] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.466] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:46.587] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.648] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.708] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:46.769] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:48.046] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:48.046] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:48.047] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:48.047] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:48.198] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:48.208] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:48.269] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:48.330] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:48.390] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:48.451] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:48.511] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:48.572] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:48.633] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:48.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:48.754] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:48.814] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:48.875] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:48.935] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:48.996] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.056] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.117] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.177] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:49.238] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.298] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.359] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:49.420] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:49.903] RECV nos.lol:443: ecca9ed93d1394","kind":3,"pubkey":"e096a89eeb9082089 +[14:29:50.757] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:50.757] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:50.757] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:50.757] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:50.978] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:51.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:51.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:51.159] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:51.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:51.280] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:51.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:51.401] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:51.462] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:51.522] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:51.583] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:51.643] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:51.704] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:51.764] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:51.825] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:51.885] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:51.946] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:52.007] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:52.067] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:52.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:52.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:52.249] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:52.732] RECV nos.lol:443: ecca9ed93d1394","kind":3,"pubkey":"e096a89eeb9082089 +[14:29:53.784] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:53.784] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:53.784] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:53.784] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:53.936] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:53.946] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:54.007] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:54.067] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:54.128] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:54.189] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:54.249] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:54.310] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:54.370] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:54.431] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんで大人たちはガキンチョに垂直の鉄の棒を登らせようと思ったんだろう","created_at":1759429765,"id":"9c4e654e1acf308eef7d8d1a672e9203a265e01e937b06649e93575d60dfb40d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"5d1c7acf689feb24fcde3f3bc28208cc43984a3f3d974c915ff3cb1414c53c92a5b482aa85cdb69c401dff79331f9764f9e2de3832166e71b5d6d18c8d970848","tags":[]}] +[14:29:54.492] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:54.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:54.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:54.673] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:54.734] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:54.794] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:54.855] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:54.915] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:54.976] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:55.036] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:55.097] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429645,"id":"b25644fb994526d9e259ab3a62fd65341ae6c1f61ca9ace958d43d184552178c","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"41cef4f1a23729912b651e01c283cc48752a282cd6fa5c54092c5a099c81a0c9abda8820f997c3b5fb14d49a23135800aa72d97bcaae8a7e5183b67e22c119b2","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:55.157] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:55.640] RECV nos.lol:443: ecca9ed93d1394","kind":3,"pubkey":"e096a89eeb9082089 +[14:29:56.492] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:56.493] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:56.493] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:56.493] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:56.643] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:29:56.704] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:56.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:56.825] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:56.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:56.947] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:57.007] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:57.068] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:57.128] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:57.189] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Making unusually profitable transactions available to all miners in the goal.","created_at":1759429765,"id":"d4b843a34caedddc3f96c30697231001d47621e1ae05c9e51ff1c1a839d142d1","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"270c2a9fa537699414e293c05a166a2a4e0fc71da502913feb1b74aff2aeadaf4de88e6fbd8728fdc137b661d9ae7af5a42680663154a8022b933ce8cfc017e5","tags":[["e","79b76b0754bf682ae84241163697483a3632200cecd5688b59267b2fb40503f3","wss://nostr.mineracks.com/","root"],["e","94ccf48c0ba6d31361c063d5cb7730f175d0cb21f3147d1928806c18cc551f82","","reply"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["p","a0cb70d3208f5f7cf66b9cbb582ef1e215ef4ef0c9531863858fb664ddfb0b8f"]]}] +[14:29:57.249] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:57.310] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:29:57.371] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:29:57.431] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:29:57.492] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.673] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.734] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:29:57.794] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.855] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:29:57.915] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:29:58.972] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:29:58.972] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:29:58.973] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:29:58.973] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:29:59.124] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:29:59.184] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:29:59.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:29:59.486] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:29:59.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:29:59.607] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:29:59.668] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:29:59.728] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:29:59.789] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:29:59.850] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A bit not jealous but also a bit jealous. ","created_at":1759429766,"id":"cbe543b49177da02ee035fe670b09d8bfce786a90aa19a177c4c35f3239036bc","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"2d6f02dd6730195c6372d1ebdb9fdbeb8e6e574028776de5afc036a92e178e788ec66feced55a66fc40c61b8b782735cf3b082185e70e17803899cb018428ce9","tags":[["alt","A short note: A bit not jealous but also a bit jealous. "],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:29:59.910] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:29:59.971] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:00.031] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:00.092] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:00.152] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.213] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.334] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:30:00.455] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:00.576] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:01.670] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:01.670] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:01.671] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:01.671] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:01.822] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:01.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:01.959] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:02.020] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:02.080] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:02.141] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:30:02.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:30:02.262] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:30:02.323] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg\n\nSo Happy MoMmY ShE GoT It","created_at":1759429776,"id":"135b7b63c0863f010236fab9d4253666b3c71ab2b40aae118f4b5d9ff6e84ab5","kind":1,"pubkey":"553a3cd59c90068eb90b55ae624d3dc7213408939e5b4fa130d1716f482d443d","sig":"25c01bb19168f3a4cab015e15f2300bbadd8a5dd8e043a5c6f588a6fb5d0ad5fcdb7b153f6116b63a772fe14b4d7257c00e80d9918977ddbd7fc983f07e84b1e","tags":[["imeta","url https://image.nostr.build/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg","m image/jpeg","x 732b1df18348e5b8b7c1b35b0e1c6b2581e27927ea876fa2d5bf1c9bb338525d","ox 1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154","blurhash LYE{CD~BkWOYtRbasm%1NZkWr=s-","dim 1920x1440","thumb https://image.nostr.build/thumb/1d075986a1b5951d944c2fe9c970346a82614b66cf8d8d8c9d422daaa563f154.jpg"]]}] +[14:30:02.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"木の下に囲い書き…。縄張りか落書きか、危ない匂いがする。放っとくと広がる。写真撮って記録しろ、触るな。ひとりで行くな、誰かと見に行け。cuidado。困ったら相談しろ、諦めるな。一緒に行けば怖くない、vamos juntos。","created_at":1759429772,"id":"61732bbb0762d2e8f83e535e428f81c0cebfef2a78ba13871cd9c3a417504a5c","kind":1,"pubkey":"bd8eedc9473daa7c8820c942b74476b6f98e6758d3d1028d72b69e95842501be","sig":"3277b7d030e0eb1e8e21035c8e9bf5cf30aeca5b1afef90a71e8eb28353b65178ffb0d7d2b3d0752f7b15c9a9428f2d295304efab0fc22e91280e3a9aa176033","tags":[]}] +[14:30:02.444] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:02.504] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:02.565] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:02.626] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:02.686] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:02.747] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:02.807] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:02.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:02.928] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:30:02.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:03.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"NonPlayableClown\",\"about\":\"Just a clown, clowning on the fedi. 🤡\\n\\nFor poa.st users who stumbled on my account:\\nThe reason why you cannot see my posts is because of your bitch ass admin.\\n\\nAsk me how you can get defed from poast. :HappyDanielS:\\n\\nBackup account: https://decayable.ink/@Nonplayableclown\\n\\nPeople who are afraid of me... for some reason:\\nGraf\\nKirino\\nJonnyFever\",\"picture\":\"https://postnstuffds.lol/media/efa1d6e8-ec80-4948-9fae-0cb7a35ab22f/NPC%20head.png?name=NPC%20head.png\",\"banner\":\"https://postnstuffds.lol/media/ebb7c069-e49c-4829-bfc4-b1169ef13a79/PostNStuffDS%20Birthday.png?name=PostNStuffDS%20Birthday.png\",\"nip05\":\"NonPlayableClown@postnstuffds-lol.mostr.pub\",\"lud16\":\"0xfcf9479541b5a841@ln.tips\",\"fields\":[[\"⚡\",\"0xfcf9479541b5a841@ln.tips\"]]}","created_at":1759429651,"id":"29a0b92fd84b2d6b10d59038534ad999876a962a07d7b15e190d952d50c03ac2","kind":0,"pubkey":"d07b307f6af2e608838b5f3801b041f36d119952653fec69c520bf20ab552d2e","sig":"d090cd85ec181c019f932f36468cc1608df0a4ac92d3605f26711a978e28707d993f4c0cd24012c5162dfe4518901a9eec33cd00bcd440c4d0d5951e7cd0dd65","tags":[["emoji","HappyDanielS","https://postnstuffds.lol/emoji/DanielS/HappyDanielS.png"],["proxy","https://postnstuffds.lol/users/NonPlayableClown","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:03.110] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:03.679] RECV nos.lol:443: 8451956cc14a2e9065ad1a8fda185c202698937b"],["p","787338757fc25d65cd929394d5e7713cf43638e8d259e8dc +[14:30:05.189] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:05.189] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:05.189] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:05.190] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:05.342] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:05.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:05.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:05.524] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:05.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:05.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:05.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:05.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:30:05.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"No idea, but it's very lite","created_at":1759429782,"id":"d0a0c96d4a356148c47b5782ad324bd8bd2f384ebc160f432534cc00c768ddeb","kind":1,"pubkey":"a87c9bfc4570fe15afdda6c0095ade2d74fb14e3294bff37a965522983bda6a8","sig":"4dd44a0c329b5473a2803901c43f5f66bfb05684ebb6dc70488c10b876637ce4c88d4b548eab3f882efe36fc5d8c20cd777b349c6d1f5ad3a8b0ed134b87bbe7","tags":[["p","465eb13404d7219cd91c2b4a8a7e308ad4e09bc1298dc08c5eec852e9bf5da09"],["e","792de9f644bf8d7eacf7fe37b41d730c7632204311da558a4d10c380e8ffb1a1","","reply"]]}] +[14:30:05.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4\n\n🤣🤣 Who can watch cute kitty vids all day with shit like this available??\n\n#walkaway #antifaisfascist","created_at":1759429777,"id":"65e3f30e993ab0cf9f03173dcb7198326bf2e07c1ee00608d3d617ba0140979f","kind":1,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"f8d21348da0b01e21008d69c296c44f202dd39b3cc2db09ac1d7c80f4f001d17918f9fedd4931b08bb72ad0646ebd52ea4fb0779c5e58839d5bb56fce4955522","tags":[["alt","A short note: https://video.nostr.build/4e3b7f38fd88b262e5951701..."],["t","walkaway"],["t","antifaisfascist"],["r","https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4"],["imeta","url https://video.nostr.build/4e3b7f38fd88b262e59517014fabdc17699231367d430e4837d766bad9f39c1e.mp4","x 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","size 3839161","m video/mp4","dim 720x720","blurhash UTEyPjs:ogM{RMt7oLR*_NWVofWBR#bIofRj","ox 98d659ed6c5940a0b159c9de653a5779619918830374da674bfa420045454e19","alt "]]}] +[14:30:05.948] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:06.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:06.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:06.130] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:06.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:06.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.311] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.432] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:30:06.553] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:06.614] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:06.674] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429803,"id":"b157b6c2eda397060f311f58e664acdaf80e53833cc758a8b84b610be89cc8a9","kind":3,"pubkey":"e2b8ba3e6f7d63ab44559f25a6863d1d9ba1a2cd751391a69e261ad027400d81","sig":"f921b754504d7f62c3e6ab21637f4d788acf0136ae6b44d63d5a23ad260c7e9ac8ea6da6aaff4461d53aa6832f6a8df0dc25e3ab5b9cdebc319dd816d75414f4","tags":[]}] +[14:30:07.278] RECV nos.lol:443: 8451956cc14a2e9065ad1a8fda185c202698937b"],["p","787338757fc25d65cd929394d5e7713cf43638e8d259e8dc +[14:30:08.614] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:08.614] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:08.614] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:08.614] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:08.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:08.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:08.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:08.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:09.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:09.102] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:09.162] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:09.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:09.283] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:09.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:30:09.404] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:09.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:09.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:09.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:09.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:09.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:09.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:09.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:09.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"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":1759429662,"id":"b084429afa2006485a7aa377590150ca6d5834b3f5b0c9e9c7cdde264057b3fa","kind":0,"pubkey":"cc4cbb929c7df889f45b03adca0850fc9ccae272c7c861606dd5049fdf94544f","sig":"6061e8f3d7a5790cb22e97cd127cd7c4b295b99c6b954ecf179a8573be4a6dc1ad318c23d9330910422532b4af54652f7191588288c95f634419098878a09f81","tags":[["proxy","https://spinster.xyz/users/HebrideanHecate","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:09.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Joined 10/2/25\",\"display_name\":\"Twinbecky101\",\"picture\":\"https://blossom.primal.net/868f163b1e6101a265f405c1873f35dfdb034ac8a57f5eb66d63cf76fabd4a8e.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429656,"id":"1efdea62566988d6bab69a9be3795f32cfd01042004d0063267fe7089dbddb5b","kind":0,"pubkey":"b3372130a635de3f23145967b936043f7b9520a09722a49033e32730b51f7e78","sig":"66a8d3232d734d5bed49bc9b77fea07700a957a3d56af2bfa5416a54ecca3a4dbc7cd1d4fa8de3cddd31f185d86ede71169e87a7bce30d03f73f8d8dcc993ff4","tags":[]}] +[14:30:10.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\":fuwadance: Goalkeeper :mocodance:\",\"about\":\"Backup: https://tsundere.love/users/goalkeeper\\nI have lived 1000 years\\nSystemd is distilled ass-cancer\\nOpenrc enjoyer\\nGundam Addict\\nBAU BAU\\nDM me for matrix\\n\\n*EVERYTHING I SAY IS A JOKE UNLESS YOU AGREE WITH ME THEN IT'S REAL*\\n\\nAfter all, I am only me, and my death, no more than death is. The sole shames would be this wine and world, for at day's end I love them long\",\"picture\":\"https://media.nicecrew.digital/03097c03a0b7ab8182cebce8131280ba761248498703262c261270635dfd6fac.gif\",\"banner\":\"https://media.nicecrew.digital/95bc783704171ac17061ae0cf47b17b0dfccc3c1c17604ff53fa835f4bfecb9c.gif\",\"nip05\":\"Goalkeeper@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759429652,"id":"51106c257af5844a6759b8e76e71aff28ca5e02ba2d34895a5e4a3886247c355","kind":0,"pubkey":"86b16577a38b928fa36825ad2d245f44d44841af232b1d21b275b951fe6afa67","sig":"ab1424a75a9d2ce92dd33baf8b03ae32ff91b0b57cf54b64c6a8a8dc5dfc7ec60c976e81e2113e7f132bd7c163848baad61073beca419cc1907d0e4423dd877e","tags":[["emoji","fuwadance","https://nicecrew.digital/emoji/nicecrew/fuwadance.gif"],["emoji","mocodance","https://nicecrew.digital/emoji/nicecrew/mocodance.gif"],["proxy","https://nicecrew.digital/users/Goalkeeper","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:10.070] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:10.130] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429803,"id":"b157b6c2eda397060f311f58e664acdaf80e53833cc758a8b84b610be89cc8a9","kind":3,"pubkey":"e2b8ba3e6f7d63ab44559f25a6863d1d9ba1a2cd751391a69e261ad027400d81","sig":"f921b754504d7f62c3e6ab21637f4d788acf0136ae6b44d63d5a23ad260c7e9ac8ea6da6aaff4461d53aa6832f6a8df0dc25e3ab5b9cdebc319dd816d75414f4","tags":[]}] +[14:30:10.734] RECV nos.lol:443: 8451956cc14a2e9065ad1a8fda185c202698937b"],["p","787338757fc25d65cd929394d5e7713cf43638e8d259e8dc +[14:30:12.067] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:12.067] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:12.067] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:12.067] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:12.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:12.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:12.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:12.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:12.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:12.520] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:12.581] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:12.642] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:12.702] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:12.763] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"It’s so sick. Worth the investment!","created_at":1759429782,"id":"50be2e81eb1b4073f47aadb211e4d20add5488b2d3c8e10f565f174f245d4f5d","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"05cc1396357a7b9f9639f36e814922ebeba52e4900f9f612a8c7b5223e37c0674f172f9970cb1f3e92b4b67e8503f219e1c489f449e70145ddbccf7862213c12","tags":[["e","e089f9cc3d2a07ec6a4aab764774c4714e8e6cb306cf4cb98e0f845a0e324545","","root"],["e","8e2c36cea5f3efa679e1a688ef72de66d6e560623127b176603aebe73025bea4","","reply"],["p","de14fe62f97e09429581f9e8fec3170f3ce5e7936a2134bf70c87c5ff229e53a"]]}] +[14:30:12.823] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:12.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:12.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:13.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:13.066] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:13.092] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:13.152] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:13.213] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:13.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:13.334] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:13.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:13.455] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:14.179] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:14.240] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:15.216] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:15.216] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:15.216] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:15.216] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:15.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:15.429] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:15.490] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:15.550] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:15.611] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:15.671] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:15.732] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:15.792] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:15.853] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:15.913] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:15.974] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:16.034] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:16.155] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:16.276] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:16.337] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:16.397] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:16.458] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:16.639] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:17.364] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:17.424] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:18.395] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:18.395] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:18.395] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:18.396] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:18.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:18.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:18.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:18.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:18.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:18.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:18.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:18.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:18.981] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:19.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"類人猿時代を思い出させたかったんじゃない","created_at":1759429786,"id":"fc338f08c71ae085a28493f31cd00d798bc403a52c350226b6c68e48de6d47cf","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"129699ebff83cdbac9ed27726398b34391eb3dbe77d5982bbe114c2d35d86203e0eb8adb51b82a4f4101e70248638c23a6bf3d3ce7be71430c685333676324e0","tags":[]}] +[14:30:19.102] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:19.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:19.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.344] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:19.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:19.465] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:19.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:19.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.707] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:19.768] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:20.492] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:20.553] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:21.870] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:21.870] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:21.870] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:21.870] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:22.202] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:22.263] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:22.323] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:22.384] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:22.444] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:22.505] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:22.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:22.626] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:22.687] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:22.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:22.808] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:22.868] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:22.929] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:22.990] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:23.050] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:23.111] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:23.136] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:23.197] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:23.257] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:23.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:23.378] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:23.439] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:24.164] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:24.224] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:25.397] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:25.397] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:25.397] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:25.397] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:25.729] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:25.790] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:25.850] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:25.911] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:25.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:26.032] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:26.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:26.153] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:26.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:26.274] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"BAD BITCHES \nhttps://images2.imgbox.com/2e/f8/4jAqkYx5_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429786,"id":"8f145c80d1b6c0a69910617ff561f5ce65268b8939031fa175edb9b800b1cad4","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"d4736f44e4f5ca906496c36dbc50fddbf30e6fa3bc9d53d8b99dcfcb1fa380ac9cf141b29762bb7cd1ba1942b195a5b2c442369189a00aba192f272c9f73d57e","tags":[]}] +[14:30:26.334] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:26.395] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.455] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:26.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.576] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:26.636] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:26.697] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:26.757] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:26.818] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.878] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.939] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:26.999] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:27.060] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429824,"id":"a51292e4aa01768e687836a7468fcbf6845227ce834f3aca420c4806068f43dd","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"d00b404a61b77029b7b97a018c5c8a2833668fbf84ea8685ee8c7244a14a0088512f18a03b2b18471759fc5cf6d99a7babea881d751f577bd78726b2162eb461","tags":[["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"]]}] +[14:30:27.785] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:27.845] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:28.787] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:28.787] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:28.787] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:28.787] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:28.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:28.999] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:29.060] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:29.120] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:29.181] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:29.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:29.302] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:29.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:29.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:29.484] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"りとりんも類人猿だよな","created_at":1759429796,"id":"d0c4c00c8bd8bf354a149ff6f14f809dc499804efbf85068008b4519e35f3a13","kind":1,"pubkey":"9c964f04725d4b6973588ee52f999b7de44da690503e9c12404532fb1ec95863","sig":"d51b948d5afc24adff50f481d2e609f82cdb20d2771e21b74b500d84217fe214f70c4b33b35985c7a9eda06c7d61e5d9bcec4915dac203dc397f3cab6aa8835a","tags":[]}] +[14:30:29.544] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:29.605] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:29.665] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:29.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:29.787] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:29.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:29.908] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:29.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:30.029] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:30.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:30.150] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:30.211] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:30.271] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429824,"id":"a51292e4aa01768e687836a7468fcbf6845227ce834f3aca420c4806068f43dd","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"d00b404a61b77029b7b97a018c5c8a2833668fbf84ea8685ee8c7244a14a0088512f18a03b2b18471759fc5cf6d99a7babea881d751f577bd78726b2162eb461","tags":[["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"]]}] +[14:30:30.996] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:31.056] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:32.222] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:32.222] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:32.222] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:32.222] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:32.375] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:32.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:32.496] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:32.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:32.617] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:32.678] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:32.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:32.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:32.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:32.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:32.981] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:33.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:33.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:33.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:33.309] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:33.370] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:33.430] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.491] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.551] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:33.612] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:33.672] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429824,"id":"a51292e4aa01768e687836a7468fcbf6845227ce834f3aca420c4806068f43dd","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"d00b404a61b77029b7b97a018c5c8a2833668fbf84ea8685ee8c7244a14a0088512f18a03b2b18471759fc5cf6d99a7babea881d751f577bd78726b2162eb461","tags":[["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"]]}] +[14:30:34.397] RECV nos.lol:443: 9b45a321d9"],["p","0114bb11dd8eb89bfb40669509b2a5a473d27126e27acae58257f2fd7cd95776"],["p","21c0f7a430 +[14:30:34.458] RECV nos.lol:443: cf74b7fc1d796c367771125f992a106a00273b2f6c8580171c0d"],[ +[14:30:35.433] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:35.433] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:35.433] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:35.433] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:35.584] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:35.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:35.705] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:35.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:35.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:35.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:35.947] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:36.008] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:36.068] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:36.129] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:36.190] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:36.250] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.311] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:36.371] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.432] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:36.492] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:36.553] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:36.613] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:36.673] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.734] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.794] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:36.855] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:38.612] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:38.613] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:38.613] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:38.613] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:38.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:38.775] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:38.836] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:38.896] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:38.957] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:39.017] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:39.078] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:39.138] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:39.199] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:39.259] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I don’t do drugs actually haha so maybe I haven’t done enough drugs ","created_at":1759429796,"id":"a63f4b35d542da39936f5b6feac2da094e889f11196e8389a8ac9bcb3e711e8b","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"877a6edc0e7375aa94e2e86ad4e171da10888c2630d6184959f74a1b582adcc5b0903629a57d98ce2a91cc3c7d4c82b20a99e562fdd2ad338316e3fb04df6780","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"],["e","a3c2f2a587d4c3b3e7624f775682717b19a87c455b2691ccdca85eb45978a5a2","","reply"],["p","bea135f01ee6182b8618acaaa5eefd5271f22d5c8b2827413fe894a720051c36","","mention"]]}] +[14:30:39.320] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:39.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.441] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:39.501] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.562] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:39.622] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:39.683] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:39.743] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:39.804] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.864] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.925] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:39.985] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:42.247] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:42.247] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:42.247] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:42.248] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:42.400] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:42.461] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:42.521] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:42.582] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:42.642] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:42.703] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:42.763] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:42.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:42.884] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:42.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:43.005] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:43.066] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.091] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:43.152] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.212] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:43.273] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:43.333] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:43.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:43.454] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.576] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:43.636] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:45.394] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:45.394] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:45.394] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:45.394] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:45.545] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:45.606] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:45.666] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:45.727] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:45.787] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:45.848] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:45.909] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:45.969] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:46.030] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:46.090] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:46.151] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:46.211] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.272] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:46.332] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.393] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:46.453] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:46.514] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:46.574] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:46.635] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.695] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.756] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:46.816] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:46.877] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429843,"id":"2927ed4e940004cac93cff81ab541892b9ecff1a6bfc45cfe2e95fb0d0652278","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"83ba87c77d170f995b47660a27c8e8d00e5b1b335249db8753b148d39d5013653781e5f2448f95031287e35aa90bdd5100fb7996791d6bde68921d935c5da930","tags":[["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"]]}] +[14:30:48.641] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:48.641] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:48.641] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:48.641] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:48.793] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:48.804] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:48.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:48.925] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:48.985] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:49.046] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:49.106] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:49.167] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:49.227] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:49.288] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:49.348] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:49.409] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:49.469] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:49.530] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:49.590] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:49.651] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:49.711] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:49.772] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:49.832] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:49.893] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:49.953] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:50.014] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:50.074] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429843,"id":"2927ed4e940004cac93cff81ab541892b9ecff1a6bfc45cfe2e95fb0d0652278","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"83ba87c77d170f995b47660a27c8e8d00e5b1b335249db8753b148d39d5013653781e5f2448f95031287e35aa90bdd5100fb7996791d6bde68921d935c5da930","tags":[["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"]]}] +[14:30:51.837] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:51.837] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:51.837] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:51.837] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:51.988] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:52.049] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:52.109] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:52.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:52.230] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:52.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:52.351] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:52.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:52.472] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:52.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:52.593] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:52.654] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:52.714] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:52.775] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:52.835] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:52.896] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:52.956] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:53.017] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:53.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:53.103] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:53.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:53.224] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:53.465] RECV nos.lol:443: b450","kind":3,"pubkey":"e5237023a5c0929e7ae0e5128d41a8213138400ec110dbe9d8a29278f22b7c13","sig": +[14:30:53.767] RECV nos.lol:443: 68f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"], +[14:30:54.190] RECV nos.lol:443: 118ca7b62129d267f3d"],["p","2b349bb9ae581ab6092365a16aef15c0ffc8f1a593e22f79b04fdb122543c1f9"],["p +[14:30:54.491] RECV nos.lol:443: 7da5413aa0eeca0c21322"],["p","2f5de0003db84ecd5449128350c +[14:30:55.647] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:55.647] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:55.647] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:55.647] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:55.799] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:55.860] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:55.920] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:55.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:56.041] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:30:56.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:30:56.162] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:30:56.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:30:56.283] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:30:56.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:30 ------------✄","created_at":1759429800,"id":"479a8e79485962f3215a67f1a5a2100ff0f8f4385bd822b97f35a75c2be59b46","kind":1,"pubkey":"e4f9ab96540d24a525a149432efb94aaa2e3073cd246cd74316b9eeb9512673a","sig":"e143a0e010ce153e92320dd1f46da32c891796b4fa13f6fca1b0061eb7f9143f3fb13906e3b95c55ce12a548cc4bb6f729225c13a129ca6b09c9067f8451a711","tags":[]}] +[14:30:56.404] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:30:56.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:56.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:30:56.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:56.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:30:56.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:30:56.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:30:56.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:30:56.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:56.960] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:57.020] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:30:57.081] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:30:57.141] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:30:57.383] RECV nos.lol:443: b450","kind":3,"pubkey":"e5237023a5c0929e7ae0e5128d41a8213138400ec110dbe9d8a29278f22b7c13","sig": +[14:30:57.685] RECV nos.lol:443: 68f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"], +[14:30:58.108] RECV nos.lol:443: 118ca7b62129d267f3d"],["p","2b349bb9ae581ab6092365a16aef15c0ffc8f1a593e22f79b04fdb122543c1f9"],["p +[14:30:58.374] RECV nos.lol:443: 7da5413aa0eeca0c21322"],["p","2f5de0003db84ecd5449128350c +[14:30:59.529] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:30:59.530] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:30:59.530] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:30:59.530] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:30:59.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:30:59.742] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:30:59.803] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:30:59.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:30:59.924] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:30:59.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:00.045] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:00.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:00.165] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:00.226] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:31:00.286] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:00.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:00.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:00.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:00.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:00.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:00.770] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.891] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Disclose.tv\",\"about\":\"Observing world events unfold in the grand theater of our time.\\n\\n(mirror of @disclosetv@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/83876195baf1f9fd27b172da210b482c329989d3f01f7eab4d4379c72a217aac.png\",\"banner\":\"https://hell.twtr.plus/media/0bf5012f1b92044e895eb684471c821d39a73266f173fec919b646322f991a84.png\",\"nip05\":\"disclosetv@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429703,"id":"fa6e645ffeb3d0081354f84d6ab6199e0d5d13f9f917edfd7f23de05c7f619a4","kind":0,"pubkey":"456f5df2aa0d3c34c3906a8c5e68869a661e81c1053ade4542a24e6d0f90578f","sig":"782a27918b8cda0398d298d20ab2a2066cb81f17591ddc207f348b8637a9e4f9597739b6fd55ca9ebd60be8005210a8e1c5725a7682358796019c027c4c56dae","tags":[["proxy","https://hell.twtr.plus/users/disclosetv","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:00.952] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:01.012] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:01.254] RECV nos.lol:443: b450","kind":3,"pubkey":"e5237023a5c0929e7ae0e5128d41a8213138400ec110dbe9d8a29278f22b7c13","sig": +[14:31:01.556] RECV nos.lol:443: 68f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"], +[14:31:01.978] RECV nos.lol:443: 118ca7b62129d267f3d"],["p","2b349bb9ae581ab6092365a16aef15c0ffc8f1a593e22f79b04fdb122543c1f9"],["p +[14:31:02.279] RECV nos.lol:443: 7da5413aa0eeca0c21322"],["p","2f5de0003db84ecd5449128350c +[14:31:03.915] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:03.915] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:03.915] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:03.915] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:04.087] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:04.147] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:04.207] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:04.268] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:04.328] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:04.389] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:04.449] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:04.510] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:04.570] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:04.631] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:31:04.691] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:04.752] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:04.812] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:04.873] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:04.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:04.994] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:05.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:05.115] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:05.175] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:05.236] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:05.297] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:05.357] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:05.418] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:05.479] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:06.144] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:07.053] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:07.054] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:07.054] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:07.054] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:07.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:07.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:07.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:07.386] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:07.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:07.508] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:07.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:07.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:07.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:07.749] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":" --------------03:30--------------","created_at":1759429801,"id":"cba58e1e6093059a2194bfa6e7b2c7806b3078431eeb395b967893876a62fd32","kind":1,"pubkey":"87e02cd9151cbf69ba20268a2a4237ad2f39fc631c96558e294ca00586477412","sig":"f300e13b16b8787a03361e8d525d78e289d7a37181b06d594e140f96e1136355b47e7f830da7c0c30bf55a9223529c0b588340b2c4f74f8c51a13311ec5df8b9","tags":[]}] +[14:31:07.810] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:07.870] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:07.931] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:07.991] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:08.052] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:08.077] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:08.138] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:08.198] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:08.259] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:08.319] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:08.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:08.440] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:08.501] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:08.561] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:09.226] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:10.137] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:10.137] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:10.137] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:10.137] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:10.294] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:10.355] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:10.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:10.476] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:10.537] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:10.597] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:10.658] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:10.719] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:10.779] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:10.840] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:10.900] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:10.961] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:11.021] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:11.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:11.143] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:11.203] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:11.264] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:11.324] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:11.385] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:11.445] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:11.506] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:11.566] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:11.627] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:11.688] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:12.352] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:13.265] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:13.265] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:13.265] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:13.265] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:13.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:13.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:13.487] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:13.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:13.608] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:13.668] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:13.729] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:13.790] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:13.850] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:13.911] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:13.971] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:14.032] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:14.092] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:14.153] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:14.213] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:14.274] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:14.334] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:14.395] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:14.455] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:14.516] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:14.576] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:14.637] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:14.697] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:14.758] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:15.422] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:16.341] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:16.341] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:16.341] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:16.341] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:16.493] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:16.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:16.614] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:16.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:16.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:16.795] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:16.856] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:16.916] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:16.978] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Interdenominational Aliens","created_at":1759429805,"id":"0ad0d92081dc127f0e47e3ee496207d31f2df9113e442b5ff9852219a91cfbfa","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"8f43584a735b771c309dc72cc9f974ffc326112e6eb920729814ed219517ea66e49367632053c87ad25f3fa627f30a6ebd5a71d427b4a6293a783553dbb11a41","tags":[["e","569876fe3e2bfa5b2bc68c52046f49d7abec12c5689892b313b4b72201233df6","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:17.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"エクセントリックだね","created_at":1759429803,"id":"3b7701e606f271429895886cb0e08354ab58fc82838b8a2bc7cdc701f09a0e7d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"d156c29569dcd2e8b0b5281321d06ca5880a3b323d0e38d5532e33c119912a3d15fd4b97c4d059b14ddc4c6e3f6050183cf789e86bb6e9ccb1911ff17a56832b","tags":[]}] +[14:31:17.099] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:17.159] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:17.220] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:17.280] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:17.341] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:17.401] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:17.462] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:17.522] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:17.583] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:17.643] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:17.704] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:17.765] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:17.825] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:17.886] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:18.515] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:19.428] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:19.428] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:19.428] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:19.428] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:19.734] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:19.794] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:19.855] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:19.915] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:19.976] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:20.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:20.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:20.158] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:20.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:20.279] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:20.339] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:20.400] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:20.461] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:20.521] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:20.582] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:20.642] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:20.703] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:20.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:20.824] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:20.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:20.945] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:21.005] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:21.066] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:21.126] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:21.790] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:22.706] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:22.706] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:22.706] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:22.706] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:22.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:22.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:22.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:23.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:23.100] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:23.126] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:23.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:23.247] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:23.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:23.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:23.428] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:23.489] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:23.549] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:23.610] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:23.670] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:23.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:23.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:23.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:23.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:23.973] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:24.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:24.094] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:24.154] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:24.215] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:24.880] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:25.796] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:25.796] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:25.796] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:25.796] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:25.958] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:26.018] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:26.079] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:26.139] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:26.200] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:26.260] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:26.321] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:26.381] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:26.442] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:26.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Is that nostr:npub1ymt2j3n8tesrlr0yhaheem6yyqmmwrr7actslurw6annls6vnrcslapxnz ‘s cousin?","created_at":1759429807,"id":"4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"fd107dfdb023143dd4fde8ab02c4c3072f5bc62b7ecebd7efa0235ae2da239b81dc471f7bf110d368a485b62a1a39c18742965a9ba329c8866b6e2aacb42957d","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:31:26.563] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:26.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:26.684] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:26.745] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:26.805] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:26.866] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:26.926] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:26.987] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:27.047] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:27.108] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:27.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:27.229] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:27.290] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:27.350] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:28.015] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:28.895] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:28.895] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:28.895] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:28.895] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:29.047] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:29.108] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:29.168] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:29.229] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:29.289] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:29.350] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:29.410] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:29.471] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"📢 Rust Update – Meta Shift - October 2025\n🔗 https://rust.facepunch.com/news/meta-shift","created_at":1759429820,"id":"2270a57894728c5b275120d975998059194bb5a2d27c6bd7b984c77c8deabee8","kind":1,"pubkey":"1ad8f5d35eeef24dd6e8d93f24bedb26cf4b072a6c136bcdd9293ecdbb624486","sig":"4c9b498c137830719846e0ccaeb061431ddd8ceb843443998f270ab139c64dee785faa9fe9f1db0a759d4898c5b526d8709e73e70a318efa7fbdc8d6470e3cf9","tags":[]}] +[14:31:29.531] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Roya telling her about her experience with pipes. ","created_at":1759429818,"id":"292a19d443ea8ae49a2c2221299b51344778dc7376412a48c4814cfbce3911f4","kind":1,"pubkey":"24b45900a92fbc4527ccf975bd416988e444c6e4d9f364c5158667f077623fe2","sig":"ec211bb4e6b867bf50f1a8192812c71bc47d17495c85a25840c4dad2ae41ebc1d956786e43a3691125f03ff70c88d6201927e315f9a9a4f7d6009301b3b70162","tags":[["alt","A short note: Roya telling her about her experience with pipes. ..."],["e","ff9a614733304c662419ffddf5abb91c16acd4dd7c9f1fe4928d720af104fc1a","wss://nos.lol/","root","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d"],["p","c43bbb58e2e6bc2f9455758257f6ba5329107bd4e8274068c2936c69d9980b7d","wss://purplepag.es/"]]}] +[14:31:29.592] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Stats:\nkeys: ","created_at":1759429811,"id":"5a947b0aaf4f9cd9c7ee6dd777dcad96b493aea68b52a298b1655d267900915a","kind":1,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"ea1666c7c6bc67ca62f6dee7b31dff0e3204018782ee344da87b889ef2da46f3dfc549d8ea3ec4a3e404c2f1c35665ce39d919e966254655ef13b7d11b2a6dbc","tags":[["t","keycrux"]]}] +[14:31:29.652] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:29.713] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Left vs. Right, Post-Charlie Kirk: A Rebuttal to Greg Conte’s “Keith Woods and the Jews’ New Class War”\n\nFrom Counter Currents\n\n1,201 words I had major disagreements with Charlie Kirk on immigration and Israel, as I do with much of mainstream conservatism. In fact, my first article was about roasting Charlie at UCLA during the Groyper War. But we fought each other with words, not bullets. After the death of Charlie Kirk, many on the Right […]\n\nOct 2nd 2025 2:12pm EDT\n\nSource Link: https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nInternet Archive Link: https://web.archive.org/web/20251002181641/https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044387","created_at":1759429828,"id":"c6e3b98759ff015e2c5ebd0077b32d4f5c8994b7d73eacdd1ddffa91c759e5a5","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"a1d38bad0dbb908ffc7a38e6f144fd73a9a3b01882713f916b32d05d62e6bf36e87e379762a97eb53c245d504ed164fe14530c902d0b94cd5b10bdbecfb09770","tags":[]}] +[14:31:29.773] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:29.834] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:29.894] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:29.955] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:30.015] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:30.076] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"picture\":\"\",\"lud16\":\"\",\"name\":\"\",\"nip05\":\"\",\"website\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\"}","created_at":1759429794,"id":"1680e9228ef9fb2a4c73d379da98c4633d4d5a6c2a428e8ffa424e8761da9a32","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"7b3f9babb91c3acd2fe0fd5eccc13ea166e436aa686b4ff06ee867afa05bbaab813c4228d2c87e639b4e411678a0fb2a336abbf052d48b1350c0f12509c6f3b1","tags":[]}] +[14:31:30.136] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:30.197] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:30.257] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:30.318] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Nina Paley\",\"about\":\"\\\"Based-as-fuck TERF HOST\\\" of Heterodorx.com\\n\\\"...that badass chick with a web comic who's a free software activist\\\"\\nLesbian-adjacent Car Exclusionary Radical Bicyclist. \\nRecovering heterosexual.\\nPreferred pronouns: English.\",\"picture\":\"https://media.spinster.xyz/a758411901e41da8dbcccd6699d31cc4462bc6f83509e375fe4d266fdc07f883.jpg\",\"banner\":\"https://media.spinster.xyz/accounts/headers/000/001/559/original/88e202deebdd21fc.jpg\",\"nip05\":\"ninapaley@spinster-xyz.mostr.pub\",\"fields\":[[\"blog\",\"https://blog.ninapaley.com/\"],[\"my latest film\",\"https://sedermasochism.com/\"],[\"my first film\",\"https://www.sitasingstheblues.com/\"],[\"quilts and merch\",\"http://www.palegraylabs.com/\"]]}","created_at":1759429726,"id":"538c86a1555ebff1d2104fcf7381973a658e9122bb787b703c454d93c8add804","kind":0,"pubkey":"30aa205582f85eff6bcbdf535c9b39cf5ccced3662cfa04728334dbdbf8136ed","sig":"10aa78ad08887ee2d2317c82b056a21eb138d8f8e90235fcb5da70da3695b70c78e7207a629b5434dd5c945c348bb938aaeb3dd9b796ead7ec22157035f25822","tags":[["proxy","https://spinster.xyz/users/ninapaley","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:30.378] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:30.439] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:30.500] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:31.164] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:32.079] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:32.079] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:32.079] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:32.079] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:32.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:32.292] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:32.353] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:32.413] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:32.474] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:32.534] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:32.595] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:32.655] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:32.716] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:32.776] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Left vs. Right, Post-Charlie Kirk: A Rebuttal to Greg Conte’s “Keith Woods and the Jews’ New Class War”\n\nFrom Counter Currents\n\n1,201 words I had major disagreements with Charlie Kirk on immigration and Israel, as I do with much of mainstream conservatism. In fact, my first article was about roasting Charlie at UCLA during the Groyper War. But we fought each other with words, not bullets. After the death of Charlie Kirk, many on the Right […]\n\nOct 2nd 2025 2:12pm EDT\n\nSource Link: https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nInternet Archive Link: https://web.archive.org/web/20251002181641/https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044387","created_at":1759429828,"id":"c6e3b98759ff015e2c5ebd0077b32d4f5c8994b7d73eacdd1ddffa91c759e5a5","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"a1d38bad0dbb908ffc7a38e6f144fd73a9a3b01882713f916b32d05d62e6bf36e87e379762a97eb53c245d504ed164fe14530c902d0b94cd5b10bdbecfb09770","tags":[]}] +[14:31:32.837] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:32.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:32.958] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:33.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:33.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:33.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:33.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:33.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:33.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:33.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:33.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:33.467] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:33.528] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:33.589] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:33.650] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:34.314] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:35.226] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:35.226] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:35.227] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:35.227] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:35.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:35.438] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:35.499] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:35.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:35.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:35.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:35.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:35.801] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:35.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:35.922] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Left vs. Right, Post-Charlie Kirk: A Rebuttal to Greg Conte’s “Keith Woods and the Jews’ New Class War”\n\nFrom Counter Currents\n\n1,201 words I had major disagreements with Charlie Kirk on immigration and Israel, as I do with much of mainstream conservatism. In fact, my first article was about roasting Charlie at UCLA during the Groyper War. But we fought each other with words, not bullets. After the death of Charlie Kirk, many on the Right […]\n\nOct 2nd 2025 2:12pm EDT\n\nSource Link: https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nInternet Archive Link: https://web.archive.org/web/20251002181641/https://counter-currents.com/2025/10/left-vs-right-post-charlie-kirk-a-rebuttal-to-greg-contes-keith-woods-and-the-jews-new-class-war/\n\nShare, promote & comment with Nostr: https://dissentwatch.com/boost/?boost_post_id=1044387","created_at":1759429828,"id":"c6e3b98759ff015e2c5ebd0077b32d4f5c8994b7d73eacdd1ddffa91c759e5a5","kind":1,"pubkey":"d981591e0ea6153b8687b2aed670ab7d9b6c3ad018a360b2820b3cf0f7c0ae37","sig":"a1d38bad0dbb908ffc7a38e6f144fd73a9a3b01882713f916b32d05d62e6bf36e87e379762a97eb53c245d504ed164fe14530c902d0b94cd5b10bdbecfb09770","tags":[]}] +[14:31:35.983] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:36.043] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:36.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:36.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:36.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:36.285] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:36.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:36.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:36.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:36.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:36.588] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:36.648] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:36.709] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:36.770] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:36.830] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:37.495] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:38.412] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:38.412] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:38.412] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:38.412] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:38.567] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:31:38.577] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:38.637] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:38.698] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:38.758] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:38.819] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:38.879] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:38.940] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:39.000] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:39.061] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:39.121] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:39.182] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:39.242] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:39.303] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:39.363] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:39.424] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:39.484] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:39.545] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:39.605] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:39.666] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:39.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:39.787] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:39.847] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:39.908] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:39.968] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:40.632] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:41.541] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:41.542] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:41.542] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:41.542] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:41.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:31:41.756] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:41.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:41.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:41.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:41.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:42.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:42.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:42.179] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:42.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:42.301] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:42.361] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:42.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:42.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:42.543] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:42.603] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:42.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:42.725] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:42.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:42.845] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:42.906] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:42.966] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:43.027] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:43.088] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:43.113] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:43.778] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:44.698] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:44.698] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:44.698] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:44.698] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:44.853] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:31:44.914] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:44.974] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:45.034] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:45.095] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:45.156] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:45.216] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:45.276] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:45.337] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:45.397] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Judge denies Elon Musk’s bid to move Twitter case from Washington to Texas\n\nMusk, considered the world's richest man, had argued his 'incredibly busy' schedule made attending the DC case a burden.\n\n\nhttps://www.aljazeera.com/news/2025/10/2/judge-denies-elon-musks-bid-to-move-twitter-case-from-washington-to-texas?traffic_source=rss","created_at":1759429831,"id":"7bd45533eae935a9e152f4e81b5721ef2f001887bd7bead14bfef29999a9edae","kind":1,"pubkey":"a4132de3f6fe6e8d77c6522e44377da5ac3fd2643a9f5540035a08ecf6b480e1","sig":"e738ab740edac75dda33b8c3ee45f85832e5f83c2db01f1286eebbc950e1705440e6faa953950f154883ef889c30c8cf738990d4966dd0c2e24c1db849fb273e","tags":[]}] +[14:31:45.458] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:45.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:45.579] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:45.640] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:45.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:45.761] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:45.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:45.882] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:45.942] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:46.003] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:46.064] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:46.124] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:46.185] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:46.246] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:46.306] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:46.971] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:47.886] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:47.886] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:47.886] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:47.886] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:48.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:31:48.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:31:48.124] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:48.185] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:48.245] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:48.306] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:48.366] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:48.427] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:48.487] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:48.548] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"yeah give it a cool name. guess you triggered cus you hodling some Bitcoin or something. henceforth proving my point ","created_at":1759429838,"id":"30c0f6181996cc8b35eeb63be8b0a05d09e361d5abe93718f6b6bd67351e3e99","kind":1,"pubkey":"06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5","sig":"469cbdcf07baf9c3bc9114c7fa5791fcd70a604a195583563baf2f7112f7d59069940c629a45c72960f7dae906c83129f9d3c01b53fe62031fb57acc239b6511","tags":[["client","Damus Android"],["e","0fe9346120023ec1356b3dc30c9cb2b88c0a054e8df84514284f7f07f016a97f","","root"],["e","8ae8c6ae27ee76fc2b2207086049d8f04956f0cacf7ded7b17f45c16a338fc58","","reply"],["p","80c08670361e4f7420349e5d4281b30a065fde6254489f1c255b4601f40fa85c"],["p","06830f6cb5925bd82cca59bda848f0056666dff046c5382963a997a234da40c5"]]}] +[14:31:48.608] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:48.669] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:48.729] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:48.790] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:48.850] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:48.911] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:48.971] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:49.032] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:49.092] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:49.153] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:49.213] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:49.274] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:49.334] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:49.395] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:49.455] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:50.119] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:51.228] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:51.228] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:51.228] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:51.228] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:51.379] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:31:51.440] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:31:51.501] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:31:51.561] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:51.622] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:51.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:51.743] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:51.803] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:51.864] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:51.960] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"眠いけど寝れんな\n早く寝ないとジョージクルーニーきちゃう","created_at":1759429858,"id":"5b6b38664116751d4f474f7e7ab18dafca4556a5113c45246f23e5d236422f49","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"7955dcb0cb3d2a8e3fa2e049c3c276ff2370b88249ca53b0ad3358f134b34610108513eb9976956839eb3ca2d42e7e8b5fbf2a2bf5a390f64f322caec9085827","tags":[]}] +[14:31:52.021] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:52.082] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:31:52.142] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:52.203] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:52.263] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:52.324] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:52.384] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:52.445] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:52.505] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:52.566] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:52.626] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:52.687] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:52.747] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:52.808] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:52.869] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:52.929] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:53.559] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:54.664] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:54.664] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:54.664] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:54.664] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:54.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:31:54.876] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:31:54.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:31:54.997] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:31:55.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:55.118] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:55.179] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:55.239] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:55.300] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:55.360] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:55.421] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:55.481] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:55.542] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:55.602] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:55.663] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:55.723] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:55.784] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:55.844] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:55.905] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:55.965] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:56.026] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:56.086] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:56.147] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:56.208] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:56.268] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:31:56.933] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:31:57.888] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:31:57.888] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:31:57.888] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:31:57.888] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:31:58.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:31:58.100] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:31:58.126] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:31:58.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:31:58.247] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:31:58.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:31:58.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:31:58.428] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:31:58.489] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:31:58.549] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:31:58.610] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:31:58.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:31:58.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:31:58.792] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:31:58.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:58.913] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:31:58.974] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:59.034] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:31:59.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:31:59.155] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:31:59.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:31:59.276] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:31:59.337] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:59.398] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:31:59.459] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:00.123] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:01.045] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:01.045] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:01.045] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:01.045] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:01.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:01.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:01.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:01.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:01.439] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:01.499] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:01.560] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:01.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:32:01.681] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:32:01.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:32:01.802] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:01.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:01.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:01.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:02.044] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:02.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:02.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:02.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:02.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:02.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:02.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:02.467] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:02.528] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:02.588] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:02.649] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:03.279] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:04.349] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:04.349] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:04.349] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:04.349] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:04.500] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:04.561] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:04.621] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:04.682] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:04.742] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:04.803] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:04.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:04.924] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:32:04.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:32:05.045] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Sitting in a university class. On the laptops around me I see Word and Google Docs. \n\nNot seeing any AI note takers.\n\nThey are actively listening and using their own brain to curate what they think is important.\n\nI have hope for this generation.","created_at":1759429868,"id":"b5bb1081417796c1924f8b23f579e8d1a447fbf7a77c413131b66a7e55502338","kind":1,"pubkey":"8ea485266b2285463b13bf835907161c22bb3da1e652b443db14f9cee6720a43","sig":"5d17c6d1c91782219a1cf13867fe1d5b0f072c738d63de9636352d9f681e8f378a0b13222f17db3accf088f744c88ca158eda4bff583e9ebf4c1b940c6429d68","tags":[]}] +[14:32:05.106] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:05.166] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:05.227] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:05.287] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:05.348] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:05.409] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:05.469] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:05.529] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:05.590] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:05.650] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:05.711] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:05.771] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:05.832] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:05.893] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:05.953] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:06.618] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:07.531] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:07.531] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:07.531] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:07.531] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:07.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:07.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:07.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:08.044] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:08.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:08.130] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:08.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:08.251] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:08.312] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We need to create local, trusted communities with pick hubs that can also do the shipping by driving things between the hubs.","created_at":1759429877,"id":"6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","kind":1,"pubkey":"16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","sig":"8c402624ca9eef8daf35917947091754415631600f4ffc776ec9268c446133a1f720e289a49028754abc6b56472f0cbd9a5ddab263efb7de6873c563a6693786","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","d538a65014a3c3fad21609d5e901f1dbeb91c023fceb4c7b9074230d73e07e32","","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27"]]}] +[14:32:08.372] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"One of the best","created_at":1759429874,"id":"451b2554f3229c791a4ebf63fce9364ed51c5cb051ec96ea888fa30e00e899bf","kind":1,"pubkey":"5ed6b0eedf5700f2eb8eb6d83ad47f9f61c230eb8e7b96b63ee3f7a015f31caf","sig":"beea605d5ae239941f822fbaf78d239db669eb1c137136a2b4f1d7014ec3012ff20c77fdb9bc30dd30ac68a30d2b6110e71743b9bad7a39745d78db9b859a12b","tags":[["e","bafd4aa2b9ec82c9226dbe07c0ad3ef7d0a67b2986829b9bf0dd9258df3d3bc9","","root"],["p","655f0194f141831368f4da372622062457ef73cbf1e6db1734d2c7c05e0029ca"]]}] +[14:32:08.433] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:08.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:08.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:08.614] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:08.675] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:08.735] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:08.795] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:08.856] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:08.916] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:08.977] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:09.037] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:09.098] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:09.159] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:09.219] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:09.280] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:09.944] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:10.860] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:10.860] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:10.860] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:10.860] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:11.012] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:11.072] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:11.133] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:11.194] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:11.254] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:11.315] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:11.375] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:11.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:11.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:11.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:11.618] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:11.678] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:11.739] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:11.799] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:11.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:11.921] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:11.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:12.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:12.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:12.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:12.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:12.283] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:12.344] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:12.404] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:12.465] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:13.095] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:14.009] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:14.010] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:14.010] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:14.010] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:14.342] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:14.402] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:14.463] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:14.523] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:14.584] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:14.644] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:14.705] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:14.765] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:14.826] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:14.886] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"は?三時すぎとるやんけ","created_at":1759429886,"id":"f3609d46ffacae96b4e66cfe4c75459fa60ef6c854dc65578ec249a775f26b62","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"1f2df3d9c6317c7a86325c5adf3fbf7794bc9f3e60d296dba7ccc68871fd7f54c80145abf3082d20df161619cf80b6cc4b022a887e6ad77fa61e914467a7f244","tags":[]}] +[14:32:14.947] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:15.007] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:15.068] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:15.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:15.189] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:15.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:15.310] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:15.370] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:15.431] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:15.491] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:15.552] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"ruiner\",\"about\":\"beep boop\",\"picture\":\"https://s3.clubcyberia.co/pleroma/7bb698babc8a037de59f828d8decdbcbc05b924e72c832d55ae35fdda944575f.png\",\"banner\":\"https://s3.clubcyberia.co/pleroma/f265431a6713276fee4cd4dc9dbdf293959a36d5f3ec2ed143fe3c2c655180aa.png\",\"nip05\":\"ruiner@clubcyberia-co.mostr.pub\",\"fields\":[]}","created_at":1759429728,"id":"6f7d5c6e5dd398414122ef22cdffffccc613e63622b368d27ec0a9b3d60f2534","kind":0,"pubkey":"1c1228f31ffdcb976fce8fad672b61ac36b8ee37631a7afae620247d23adda88","sig":"f217d12efe3a13c6b1dc0e6913ff05751456f1595e8985e432313c7729d2d56d58d19b8e0c70da4905bc39e8b5644ec517569c09bd9c6905f5882b4876aa083f","tags":[["proxy","https://clubcyberia.co/users/ruiner","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:15.612] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:15.673] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429891,"id":"8a2dd902fdbd8138581fa9c76f76a2569749577bbc0da41ec04099dede30d14c","kind":3,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"da0f621b4831e83706c7cd7458874d715cadd4654960637b75c02172ba06a4c6763a69b66802115476ae4c45fd7b2ee8d741e70bdab4b4d93ebf208591288f5c","tags":[["p","20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:15.734] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429863,"id":"a3990edcbac809b78ba969feaa39c8878127abc4d0e927be2a38f6f6cab52492","kind":3,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"d10b1e143eea2368400edfec17ad430ee25c2c704a2a2fbce879a5236ea0a1dd3b79a22827daa32df3df32b522eaf843cba27ef2e6bceda00c7452232c9e6f0c","tags":[["p","e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"]]}] +[14:32:15.794] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://nos.lol/\":{\"read\":true,\"write\":true},\"wss://nostr.wine/\":{\"read\":true,\"write\":false},\"wss://nostr.mom/\":{\"read\":true,\"write\":true},\"wss://nostr.oxtr.dev/\":{\"read\":true,\"write\":true},\"wss://nostr.bitcoiner.social/\":{\"read\":true,\"write\":true},\"wss://nostr.fmt.wiz.biz/\":{\"read\":true,\"write\":false},\"wss://relay.damus.io/\":{\"read\":true,\"write\":true},\"wss://relay.nostr.bg/\":{\"read\":true,\"write\":true},\"wss://relay.noswhere.com/\":{\"read\":true,\"write\":false},\"wss://relay.nostr.band/\":{\"read\":true,\"write\":false},\"wss://art.nostrfreaks.com/\":{\"read\":true,\"write\":false}}","created_at":1759429855,"id":"5818132a2a7c3b18df0ab607afb2f6d8e70a8fb9ece67873c75c0c33ad5eda5b","kind":3,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"094d5e56e936fcca5aa8ba4cc7385dbf69a773052ed6cc50a886f50dc550125bcb94935a1ce51905c99d5fffad298c7415e77c344bed6b8c2204cb631a02581d","tags":[["p","01c6b7730bf259c5221f79e275324baccd1ed6c002c7cfa4176d14e353a6c338","wss://relay.snort.social/"],["p","052466631c6c0aed84171f83ef3c95cb81848d4dcdc1d1ee9dfdf75b850c1cb4","wss://nostr.oxtr.dev/"],["p","07eced8b63b883cedbd8520bdb3303bf9c2b37c2c7921ca5c59f64e0f79ad2a6"],["p","0aa39e5aef99a000a7bdb0b499158c92bc4aa20fb65931a52d055b5eb6dff738","wss://theforest.nostr1.com/"],["p","0b44f79134c5ed6a69d4f1daf51cd750debb32b0a019b69f948e214cad3b9ea6"],["p","0b6818d4e58655c496dc1299b8e5dd61931de4cd7048632030066ebf0dab3042","wss://nos.lol/"],["p","1457776ddd86c3e3f84cb2bbd0500d92e4db7f51f068a986f54fd9ad1cbe8e0e","wss://relay.snort.social/"],["p","178016505ba1acb9269468f20e653b3835dde2deebd796dbffa045e499de2355","wss://purplepag.es/"],["p","26bd32c67232bdf16d05e763ec67d883015eb99fd1269025224c20c6cfdb0158","wss://purplepag.es/"],["p","356fe1f215a391cd93818d01b0c06188c1125ed8177b32a65bff76b876eaf915","wss://purplepag.es/"],["p","37c4e186f730439249cf08fee7b58186ccae9e4dd12f35bf58f9b4267de9109b","wss://theforest.nostr1.com/"],["p","39647228efddf22f84a7ce36d111b378ce5f3d15b8401347855e04b24c8e4e04","wss://nostr.oxtr.dev/"],["p","39db9318db202f250ca45e5f903cf648ccb437791e9027fe53101facb7144ad7","wss://nostr.oxtr.dev/"],["p","715dc06230d7c6aa62b044a8a764728ae6862eb100f1800ef91d5cc9f972dc55","wss://relay.snort.social/"],["p","76c71aae3a491f1d9eec47cba17e229cda4113a0bbb6e6ae1776d7643e29cafa","wss://relay.nos.social/"],["p","77c2a730a1921d9baefb3a433fcc2771a8ccda9f8aa461d10ebfff8039e0ca1d","wss://nos.lol/"],["p","806d236c19d4771153406e150b1baf6257725cda781bf57442aeef53ed6cb727","wss://nos.lol/"],["p","81f14ddb4704df919866a3ba0178c6b44a6a18ca8ebc7f1720c315e7ac10aad9","wss://purplepag.es/"],["p","84beab7ff963874c84cc02fc6243bb307f67b016c753ac3452b1e79b30500f90","wss://nos.lol/"],["p","8591ec964476e2d1ceaed38a6f8e4da056a29b6e875e869528068d37093ab9c4","wss://nos.lol/"],["p","8edc52705b2315a2ed721e1a10a13d849d8aaf05e5a89f87d25de602ea928ffe","wss://nostr.bitcoiner.social/"],["p","961dc4bdb7a3010056a0eb08803a49ce3ae4d229d9bc8eb7f86af99309f4a9ee","wss://purplepag.es/"],["p","969e6a28ee5214cb0296ee69cbdce4f43229124a78b1043d85df31e5636d0f1f","wss://nos.lol/"],["p","9d60b569ece31b06e5955cb7a59de9cc3ed569ac616336b196c76f1f813d37ae","wss://nostr.bitcoiner.social/"],["p","aa9047325603dacd4f8142093567973566de3b1e20a89557b728c3be4c6a844b","wss://nostr.oxtr.dev/"],["p","c8ee83e8df8bfcdae83feeb5d2607a848242e6131a52480ca7fd03262d496a32","wss://nos.lol/"],["p","d388af725538cea442c0a9f8c35b877fb57790a6c4d1040c9e95493d08db98a6","wss://nos.lol/"],["p","d7fe14ad7b3d3eb183144209ca4269044e6d31d7ecc83b8dad0ceb127d71734c","wss://n.ok0.org/"],["p","f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","wss://nos.lol/"],["p","f6ba32f8261556f5d16e6b0e1839e6ed68d53fd9fbbbce50258f66f1a61e7965","wss://nostr.oxtr.dev/"],["p","f80bf3537756e2163678b617df5fd77f819376283309db344bf47e00c4235c64"],["p","faf5d2e8ffb56fa201bc04cd8bf74a3e38de7d0439ada7fb15310d3d374ed5b1","wss://nos.lol/"],["p","448848414eb2c12d9a967fe0ccd7991c066b0644d940ad2e59933aeb1dd12db0"],["p","3369d0a763089211f9c5ffb9916d4999c4b1b6ec1ae515fc7b63187feb020757"],["alt","Follow List"],["p","4b5ebf446764e330644d4162924a86a73c5173098cbb00db0a690b097006a08e"],["p","894dfb8e81fbea70ef2ce2a2cc306069ff39e80b2881775df3dbe035359080c2"],["p","3c9834ccc8c342250a2564b15cdf161109fae633dcf385f24c88a62a5b550351"],["p","93eeb56cb24435bc608cb252d537f34f21b024c5dcbee46930da5c6d9469e39a"],["p","2a42e79b0173adc9ddb450c9919d5ca4b5d8d8210703f49257144d83f9aac2ef"],["p","a35bdbe0fd82e45dcf49b522ba65f5fc64e9dfd70a48685f991d23901b349ce8"],["p","96287b6f8c31fe708ad54d5a4030b4a598544e0adcf5499511422900900c9de0"],["p","895a0cbc1529c0668f69175a9710fd260a55fa4e7a3d82daa514ae21fc7773b8"],["p","5dc17145ed8c1c8b9752da1e84ed2e6d4e12a0b2909e17e533a426695f9c0e0e"],["p","5af2ec30b0b35679da9f4c3ab85604e48494fb8c379dfa00ce28b44c87c20d83"],["p","3bc472388945350b78fc9e5b69e82f6e8f8fe2ee14953b81517960e3a08efb71"],["p","4408c00c1e9358c05ad11dbe2d3a1d4acb8c2b6dd6386e4e3da9e14bb06df42b"],["p","cec04c393040928ce7abdfa5454dd569b82738b1d84a2060822e5fc304254f3d"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"]]}] +[14:32:16.458] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","eab0e756d32b80bcd464f3d844b8040303075a1 +[14:32:17.385] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:17.385] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:17.385] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:17.385] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:17.538] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:17.598] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:17.659] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:17.719] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:17.780] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:17.840] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:17.901] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:17.961] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:18.021] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:18.082] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Did you know that Nostr has absolutely beautiful, cult memes?\nIf this is news for you, check it out. \n\nnostr:nevent1qqsz3akg9u6maltf3ku9crqpm8p0jqe8gh4pz74js2x75qrj3q58z2czyqc2zkj02ykl2a4dv67vyn9tlp894haw83gmuutpsflmuhssady95qcyqqqqqqgzaa6k7","created_at":1759429890,"id":"86d50c0eca47d73d177d7de1b3406170e2f54e15cbcc7ce1ebe4d07e996472ec","kind":1,"pubkey":"9cba2871b9a447946b3e96c5a9318827769a2dd8e96309c426892e60c025276c","sig":"18a71d0f8a1ecc5a9c09f0536060b3a22221fd6e02e37d30a2b57657c9abc1dc9b4907d4d15bb8decff2930d27f8d24efa80941dd43abaef7e08a884192a28a7","tags":[["e","28f6c82f35befd698db85c0c01d9c2f9032745ea117ab2828dea00728828712b","","mention","30a15a4f512df576ad66bcc24cabf84e5adfae3c51be7161827fbe5e10eb485a"]]}] +[14:32:18.107] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:18.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:18.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:18.289] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:18.350] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:18.412] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:18.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:18.533] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:18.593] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:18.654] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:18.715] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:18.775] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:19.561] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:21.208] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:21.208] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:21.208] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:21.208] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:21.359] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:21.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:21.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:21.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:21.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:21.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:21.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:21.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:21.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:21.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:21.964] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:22.025] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:22.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:22.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:22.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:22.267] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:22.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:22.388] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:22.448] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:22.509] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:22.569] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:22.630] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:23.380] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:24.417] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:24.417] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:24.417] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:24.417] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:24.569] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:24.629] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:24.690] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:24.751] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:24.811] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:24.872] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:24.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:24.993] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:25.054] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:25.114] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:25.175] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:25.235] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:25.296] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:25.356] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:25.417] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:25.477] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:25.538] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:25.599] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:25.659] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:25.720] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:25.780] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:25.841] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:26.626] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:27.659] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:27.660] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:27.660] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:27.660] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:27.811] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:27.871] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:27.932] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:27.992] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:28.053] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:28.078] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:28.139] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:28.199] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:28.260] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:28.320] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:28.381] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:28.441] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:28.502] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:28.562] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:28.623] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:28.683] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:28.744] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:28.804] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:28.865] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:28.925] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:28.986] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:29.046] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:29.107] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429946,"id":"44077bd3722c5a8acbbd60fd31daa277fd8a528b14a34f1e65c080b02d89db7e","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfd8f226ca5d12b4ff57dcc72cecb0afa978f50cd1258d8080646d7d80912a35a6c0dce36e8ff4fe6a0dcccaf8e5de2aabe09c3686c282280d0d47e02c2c3008","tags":[["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"]]}] +[14:32:29.892] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:30.928] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:30.928] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:30.928] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:30.928] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:31.080] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:31.140] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:31.201] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:31.261] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:31.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:31.382] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:31.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:31.503] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:31.564] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:31.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:31.685] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:31.745] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:31.806] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:31.867] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:31.927] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:31.987] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:32.048] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:32.108] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:32.169] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:32.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:32.290] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:32.350] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:32.411] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429946,"id":"44077bd3722c5a8acbbd60fd31daa277fd8a528b14a34f1e65c080b02d89db7e","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"cfd8f226ca5d12b4ff57dcc72cecb0afa978f50cd1258d8080646d7d80912a35a6c0dce36e8ff4fe6a0dcccaf8e5de2aabe09c3686c282280d0d47e02c2c3008","tags":[["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"]]}] +[14:32:33.161] RECV nos.lol:443: 9343500368fa085ccd964b"],["p","4379e76bfa76a80b8db9ea +[14:32:34.195] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:34.195] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:34.195] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:34.195] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:34.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:34.564] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:34.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:34.685] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:34.745] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:34.806] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:34.866] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:34.927] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:34.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:35.048] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"許せん","created_at":1759429891,"id":"70b059e3223e77cb1efd77f22c084e63053d08752fb82ac6e1aa49dca76b5218","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"22d5e93552230d0d9f0f4a89e4e8bf4a96c6ffdf12d9efe9083428098f8901b4f4bbb829592c250d6acfd258a499f0bb2b6a5d03c5ba66683ecd1b7c75a1ed76","tags":[]}] +[14:32:35.108] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:35.169] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:35.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:35.290] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:35.350] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:35.411] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:35.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:35.532] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:35.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:35.653] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:35.713] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:35.774] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:35.834] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:36.258] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:36.741] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:36.802] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:36.922] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:37.406] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:38.827] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:38.827] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:38.827] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:38.827] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:38.978] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:39.039] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:39.099] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:39.160] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:39.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:39.281] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:39.342] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:39.402] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you, I really appreciate it!! 🙏","created_at":1759429910,"id":"845fb1b39feae105acd5ecb8418f8b9cbd3c855d1ab29eaa16e8746d76e1a133","kind":1,"pubkey":"8b2be0a0ad34805d76679272c28a77dbede9adcbfdca48c681ec8b624a1208a6","sig":"d3cb2f99feae023862f6ecf7e7312acc8aff16d13e370c55851bf4f62aca476235d2989dc02db8849572a393989dde56a603ae90eae66c6e4f9268f067187401","tags":[["e","60233217cb775d3191e5ce237616dfd9f6cb79665329c372cc6672e9dc64242a","wss://relay.damus.io","root"],["p","97f848adcc4c6276685fe48426de5614887c8a51ada0468cec71fba938272911"]]}] +[14:32:39.463] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Smash or pass? (ღ ˘ ⌣ ˘ ღ) \nhttps://images2.imgbox.com/d6/eb/hSYPwjP6_o.jpg \n#badbitch #bella #milan #NSFW","created_at":1759429906,"id":"fd1ee26bf2f751ecaa365c4d80b5a96747c4c74146a2b6afc82a63867806ef8b","kind":1,"pubkey":"000000796ccded0edac8aa3716014f27a718f66111c906939ee52fa24003bd11","sig":"bf14dfbc647c126216f58d2fbf96efb3ab64575acb438f3285eb6c8095570ffc3e0a86466236f8a6745e67f5a5cd2841b693315ffae876942f730408975ccc5a","tags":[]}] +[14:32:39.523] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Every repost is a vote for what matters, building a web of trust instead of feeding an algorithm","created_at":1759429895,"id":"6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","kind":1,"pubkey":"5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","sig":"ebc8f060396522a28281cdd754e5ebbcc3d9ae4d216b8a991ad88d715bd58af0948bbb249efa29accfd8b196ed23079aefa00f0f57ade2bb49311a121b814a13","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["r","wss://relay.primal.net/"]]}] +[14:32:39.584] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:39.645] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:39.705] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:39.766] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:39.826] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:39.887] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:39.947] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:40.008] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:40.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:40.129] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:40.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:40.251] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:40.311] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:40.734] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:41.218] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:41.278] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:41.399] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:41.882] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:43.340] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:43.340] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:43.340] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:43.340] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:43.492] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:32:43.502] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:32:43.563] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:32:43.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:43.684] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:43.745] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:43.805] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:43.866] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:43.926] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:43.987] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:44.047] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:44.108] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:44.168] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:44.229] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:44.289] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:44.350] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:44.410] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:44.471] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:44.531] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:44.592] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:44.652] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:44.713] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:44.773] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:45.196] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:45.679] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:45.740] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:45.861] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:46.344] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:47.815] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:47.815] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:47.815] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:47.815] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:47.966] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:32:48.027] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:32:48.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:32:48.113] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:48.174] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:48.234] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:48.295] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:48.355] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:48.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:48.476] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Enjoy!","created_at":1759429911,"id":"d4797a97b2f1253e63c95899dbf2a6e0bd3c8be45991acb77fd64b2dfeaedeab","kind":1,"pubkey":"58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","sig":"8738f5121c9149db504c1fde7a58f356051dc35cc232db3f4ad6b2d23506c2fa04498b3bde236eb884a4e60f79fdc32828506b163062e0b7a7567e66643ee4b0","tags":[["e","dcd7da1667255528aeadf0ab193741eed7c5261e9c0ed56cebcf6f87547052e0","wss://relay.damus.io/","root"],["e","63f5e99b96c0f90e60b71147d9eabdbf18ff074b26731f5f24689188cc231352","","reply"],["p","bb1c5151439e9abb680c15b191c1606b03333db3acc35a713091d9913751c3b3"]]}] +[14:32:48.537] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:48.597] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:48.658] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:48.718] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:48.779] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:48.839] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:48.900] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:48.960] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:49.021] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:49.081] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:49.142] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:49.202] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:49.263] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:49.686] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:50.169] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:50.230] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:50.351] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:50.834] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:52.291] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:52.291] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:52.291] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:52.292] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:52.513] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:32:52.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:32:52.634] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:32:52.695] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:32:52.755] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:52.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:52.876] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:52.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:52.997] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Ah, weird. Maybe I should include an habla link, next time. 🤔","created_at":1759429928,"id":"bb111ccbd8387abd11985dc06a6c22a9ac74abb49707720779ec1a7dc572ba1a","kind":1,"pubkey":"dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319","sig":"01ca2525324d4692ce6392d2b8f07afee807f01b1ee12c7464e2c95f9b6a388392c01084041cd1ff350a11c18afe1ec36d51e73622ca0ebc3265e67aff46a575","tags":[["e","a1a797a6292daa8ca198be87319e96c686ce55496e30b43f270af98962d70b31","wss://nos.lol/","root","dd664d5e4016433a8cd69f005ae1480804351789b59de5af06276de65633d319"],["e","eb90457ec19b35bfa43a85c4559bf5aa7821f1f8ac831b2f575388e6fef42850","wss://aggr.nostr.land/","reply","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"],["p","5e5fc1434c928bcdcba6f801859d5238341093291980fd36e33b7416393d5a2c"]]}] +[14:32:53.058] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"A nip05 provider used by a bot farm.","created_at":1759429925,"id":"d9b485f34c28de324f3f0412e998b65f3c41ff102a1a7534c8a3243177357798","kind":1,"pubkey":"deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","sig":"569429fe427af1e5350676355447da2204fdaf623c82966b795cf677217440197d5f5b5123cea9df61baa1a50ad5ad892c7abd6b5711a7269448c95ab1182fbc","tags":[["alt","A short note: A nip05 provider used by a bot farm."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["e","cc67a20a5a2f10677227fc13db81f8b3c90682fe9c0149ed83c631095a3496b2","wss://nostr.bitcoiner.social/","reply","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"],["p","c3c7122c63af5281fee3b9338d10ae65b166ffe6f73f1c272c5c1120607731d7","wss://relay.nostr.band/"]]}] +[14:32:53.084] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:53.144] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:53.205] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:53.265] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:53.326] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:53.386] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:53.447] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:53.508] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:53.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:53.628] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:53.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:53.749] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:53.810] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:54.233] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:54.716] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:54.777] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:54.897] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:55.380] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:32:56.837] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:32:56.837] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:32:56.837] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:32:56.837] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:32:56.989] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:32:57.049] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:32:57.110] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:32:57.170] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:32:57.231] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:32:57.291] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:32:57.352] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:32:57.412] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:32:57.473] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:32:57.533] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:32:57.594] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:32:57.655] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:32:57.715] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:32:57.776] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:32:57.836] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:32:57.897] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:57.957] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:32:58.018] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:32:58.079] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:32:58.104] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:32:58.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:32:58.225] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:32:58.286] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:32:58.709] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:32:59.192] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:32:59.253] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:32:59.374] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:32:59.857] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:01.312] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:01.313] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:01.313] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:01.313] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:01.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:01.635] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:01.696] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:01.756] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:33:01.817] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:33:01.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:33:01.938] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:33:01.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:33:02.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:33:02.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Maybe I'm missing something, but how is it hexadecimal with only 14 sides? ","created_at":1759429928,"id":"997c0476afbd87cb85c9e26ed0e12b512f1872795887476ae6465e8bc20e7abb","kind":1,"pubkey":"623ed218de81311783656783d6ce690b521a89c4dc09f28962e5bfd4fa549249","sig":"c58d391424edb86b7685549fcdb99e155435adbfc89903276fef7dfa209455efa7ad10d111de004e67bca1e3f2139c817bd51685fd167c32c6197048622237e2","tags":[["alt","A short note: Maybe I'm missing something, but how is it hexadec..."],["e","43118b01dbefa5a66a8e6edf4766a0d3d36a5184d9de19107e1c8280d07f2f1a","wss://relay.damus.io/","root","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075"],["p","d91191e30e00444b942c0e82cad470b32af171764c2275bee0bd99377efd4075","wss://relay.damus.io/"]]}] +[14:33:02.180] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:02.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:02.301] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:02.361] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:02.422] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:02.482] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:02.543] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:02.603] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:02.664] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:02.724] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:02.785] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:02.845] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:02.906] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:03.294] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:03.777] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:03.837] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:03.958] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:04.441] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:05.898] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:05.898] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:05.898] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:05.898] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:06.053] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:06.113] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:06.174] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:06.234] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:06.295] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:33:06.355] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:33:06.416] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:33:06.476] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolute love bats!! ","created_at":1759429955,"id":"22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","kind":1,"pubkey":"288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","sig":"e5ff2ba05950507ccb331ed3a42dd0ef0b282a1bcd364d2a452bdd7214f9b9b303b4dbd6069a4473df365902e9a665c87e760f1495ce61c87392f9cd6534de96","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://search.nos.today","root"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","","mention"]]}] +[14:33:06.537] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"3:32 「今夜は寝かせないよ」\n3:44 就寝","created_at":1759429939,"id":"2846d3c890c9017dfdfb404060047643441fb750924c4f1f88098669f5ae6e4d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"6eb1d33d14fe21c9f23736d9fdcb8adf2527a2e2d7399a103bd54eeaf9cacbb861359fa7fab86c2b3cdebaf367a38b74081b06f091cceef54cb8ea5bfa901e41","tags":[]}] +[14:33:06.597] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"First, run on banks, people. \nnostr:nevent1qqs9wjyayud3h5wkefm6dnpcdhac2f90x0davu9n7cnjhcfjk9hv3rqpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczyz4cewqwtep2t3zleu9xc2t7wk93zw58m2js9zcskg4c4h6njh2syqcyqqqqqqg20q2a3","created_at":1759429935,"id":"114b4567ffbaddc02d305db741146d19e0d65d4c427e8a29ba75e83675c06ad2","kind":1,"pubkey":"ec9bd7465546ba061f5dfde716a4f20f3f27ecc28ca4870775e5e853df11a9d0","sig":"5821103c9f344e4b94dfbd40082aa809fafb934139bd48f3a9e529c1d00711bbb3f2572cceeda50aefc88d971126a63d2379e10cc003b06a159b184a68ebd535","tags":[["alt","A short note: First, run on banks, people. \nnostr:nevent1qqs9wjy..."],["p","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502","wss://nos.lol/"],["q","57489d271b1bd1d6ca77a6cc386dfb8524af33dbd670b3f6272be132b16ec88c","wss://relay.primal.net/","ab8cb80e5e42a5c45fcf0a6c297e758b113a87daa5028b10b22b8adf5395d502"]]}] +[14:33:06.658] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:06.718] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:06.779] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:06.839] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:06.900] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:06.960] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:07.021] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:07.081] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:07.142] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:07.202] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:07.263] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:07.323] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:07.384] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:07.807] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:08.255] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:08.316] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:08.437] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:08.919] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:10.375] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:10.375] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:10.375] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:10.375] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:10.526] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:10.587] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:10.648] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:10.709] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:10.770] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:10.830] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:10.891] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:10.951] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:33:11.012] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:33:11.072] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me zapping you ⚡️ ⚡️ ⚡️ \nhttps://blossom.primal.net/bef570492a85dc1dbf47fa8be4f4f5666f09ce06a3007d02e27f1bc5d13d29f7.gif","created_at":1759429959,"id":"72a0046835c9dab38a47a37839a1ccb3c5b0f1e237ced0bb1e81cfb14fff1e97","kind":1,"pubkey":"1f022acff382b56e6243440d3f665939f2722d093993cb5f1169a3014a11d2ec","sig":"e6b2037b0d78c141314efc3f1205069509d3b9c5cd87aa487943b3e5c116c49fa49c465a5ea3d0a837cfade7f712b67db4c529b465f0bb71565741003e046f2a","tags":[]}] +[14:33:11.133] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:11.194] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:11.254] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:11.315] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:11.375] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:11.436] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:11.496] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:11.557] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:11.618] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:11.678] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:11.739] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:11.799] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:11.860] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:12.283] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:12.767] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:12.827] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:12.948] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:13.397] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:14.854] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:14.854] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:14.854] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:14.854] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:15.005] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:15.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:15.127] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:15.187] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:15.248] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:15.308] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:15.369] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:15.430] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:15.490] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"bros would collapse lol","created_at":1759429962,"id":"a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","kind":1,"pubkey":"d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","sig":"ddb1114898686ace4acfa7b033d82e9ad0d4a7352b3e3eadf56fc5d873eaab7af9b67cc01e5ff69cb399af52aad5367763a67b4436a976b30f020ab0790a90e4","tags":[["e","2bcb5d4ade43efe8e34eec16e18f84aeda3a97b88ee359a0a8fc9dcdd9ff2e89","","root"],["p","ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1"]]}] +[14:33:15.550] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Gonna pass on that 🤣🤣","created_at":1759429961,"id":"2da409e728c947ae2be844d17cb94c9420daf6c58ab094af7f95726e9709e2bd","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"703e5114df17beef403eed155cd4ed010bbb7a1f1e0c1b0027b1529fe7269e72fe58cceffaefd45188941cfc26eac92102b11d3184f8e4d3bf6646b1a9f3839e","tags":[["alt","A short note: Gonna pass on that 🤣🤣"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","99fb225016e082e0bfb8075a515f0a2298202e2c9ca4c0c2e160f3e580d0a02e","wss://nostr.mom/","","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["e","375a14fb8ca4a353714673e006ba3f8ac946f8f4ac01d337c383f92825afe334","wss://henhouse.social/relay","reply","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","19f9afb8f855f5e86b5bea160e78ec5871648b10dedb043f4806fca8ce50e4d3","wss://nostr.mom/"]]}] +[14:33:15.611] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:15.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:15.732] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:15.792] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:15.853] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:15.914] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:15.974] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:16.035] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:16.095] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:16.156] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:16.216] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:16.277] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:16.337] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:16.761] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:17.244] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:17.304] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:17.425] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:17.909] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:19.333] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:19.334] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:19.334] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:19.334] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:19.555] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:19.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:19.677] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:19.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:19.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:19.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:19.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:19.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:20.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ロボ","created_at":1759429973,"id":"394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"356a4cfa51886b587e15d0f2c037c4fb9aa49836c0071c3146277eab171d6d08aaad1ec19adb8892c5092b30158d97ad0f9a576a7e13eaae0ec4f137bdb88b8a","tags":[]}] +[14:33:20.100] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I love David Bentley Hart, his book That All Shall Be Saved literally saved my life (and my faith)","created_at":1759429971,"id":"46723523276f6878a21ca3597361ded3c589d45892d6ebdc02c79746a2540f5b","kind":1,"pubkey":"f4ba8a88424f0005063cfe63122fb54f16d468964199434dd17477653d32e169","sig":"7af720d7e5572bf658dc44392eb307fbc56ce3c3c9aacb055bfb8df61aa8b4842ce0e2d477d6ae9c31c326f5fd99e69e35b50a7b0b252b0901bed17d8c738fc0","tags":[["alt","A short note: I love David Bentley Hart, his book That All Shall..."],["e","ede71003978ae8c3277e6706283e9ed8ce032339860b209fd077bf9ae325d4df","wss://pyramid.fiatjaf.com/","root","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4"],["p","366e02683c44dca65e4073faab0caa138e9da4e8f24a4e70039d8eb96d84ebc4","wss://cobrafuma.com/relay"]]}] +[14:33:20.161] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:20.221] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:20.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:20.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:20.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:20.463] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:20.524] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:20.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:20.645] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:20.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Precious Surgeonfish\",\"display_name\":\"Precious Surgeonfish\"}","created_at":1759429770,"id":"bf77dc750216e3239c05258e384d7b4730fdccb15a5ad3ce5e9423eed523e60e","kind":0,"pubkey":"1b88a1ebf4fa1c434eedaf2719a390177b94e477585ed805e1553e158ecf2f99","sig":"cd014ef7d956588db7ad91cf327f32216461dfb11b2a44127150c3dc8affb2438e4dee9e2895cc0ce9801176c8d29e703bb7fd8eecd1b1aa7922d9843f3fd366","tags":[]}] +[14:33:20.766] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"IWH\",\"display_name\":\"LostRitual\",\"picture\":\"https://blossom.primal.net/71e03a9a1ff756ad2b461890a2f5e103b8754923f9ecde61bc216dec5b3eea7b.jpg\",\"banner\":\"https://blossom.primal.net/cf7d5e60f3e83e01af6d960e541117d4fbba5443849c7751547033cee7b79955.png\"}","created_at":1759429761,"id":"0c8d59829716d14d84e8ee6dd675d870c4abf6c1a8daf30dcc713ac6a812a11b","kind":0,"pubkey":"df8f9bed78ee3556ac4c297d0765ae4583aee6e3c1cba0246982bd5415b44391","sig":"1eae9b181fa9a1231e6e42d41535cab6ee33b1689c0c1effdfda8f4701f7fa39e8c0dd10baf5e812d3a025a7ff7e2ddc80615f0a1320cfac0a16c30d9c992552","tags":[]}] +[14:33:20.827] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:20.888] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:21.311] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:21.794] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:21.854] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:21.975] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:22.458] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:23.885] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:23.885] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:23.886] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:23.886] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:24.038] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:24.098] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:24.159] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:24.219] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:24.280] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:24.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:24.401] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:24.462] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie bude soudit kapitána lodi ze zadržené ruské lodi, odmítl výzvu armády: \n\nFrancouzská justice bude soudit čínského kapitána lodi z takzvané ruské stínové flotily, kterou francouzští vojáci ve středu zadrželi u pobřeží Bretaně. Prokuratura proti němu vznesla obvinění kvůli tomu, že se odmítl podřídit výzvě armády. Soud se bude konat 23. února. Loď je podezřelá i z účasti na nelegálních přeletech dronů v Dánsku. \nhttps://www.idnes.cz/zpravy/zahranicni/francie-soud-cina-kapitan-rusko-stinova-flotila-dansko-dron.A251002_144101_zahranicni_dtt \n#CzechNews #News #Press #Media","created_at":1759429981,"id":"65e8d943d79d21ccf1e308a2d409ec8ce7aa3e6e76934bb476b7875abc710742","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"07f0d4d398d367b8f5892e3aa31ddb19c56949b1dfac52a4c1b1d9a2b727b1215ab68a4f7d0b69bbbe282fcae6b8e1076fb09fcb8573ab9675eed4321ff8be6e","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:33:24.523] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:24.583] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:24.644] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:24.704] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:24.765] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:24.826] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:24.886] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:24.947] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:25.008] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:25.068] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:25.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:25.189] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:25.249] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"sats_per_zloty\",\"display_name\":\"sats per złoty\",\"about\":\"Posts sats per Polish złoty every four hours. Price data from Binance. Automation by nostr:npub1hklphk7fkfdgmzwclkhshcdqmnvr0wkfdy04j7yjjqa9lhvxuflsa23u2k.\",\"website\":\"https://hodl.camp/\",\"picture\":\"https://hodl.camp/nostr/sats_per_zloty-profile.jpg\",\"nip05\":\"sats_per_zloty@hodl.camp\",\"nip05valid\":true,\"lud16\":\"mutatrum@hodl.camp\"}","created_at":1759429801,"id":"c75c8fdc479cf59ffa5fdd4e06d238f05c3f42ac55f60311cdcf3d2a39741bbc","kind":0,"pubkey":"875707cc561b3aa8222752592ccc9725d641c4628fbcfa5c4795c5d3f6fcd0ad","sig":"9b721c9476de63bf3a203c91e099916a5ff4bc66a80861af2d7e6bf9a848fa7f61238097104180759c41e889df1eb7fdca473386a694b41e6d94073c2b62b05c","tags":[]}] +[14:33:25.310] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:25.371] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:25.793] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:26.276] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:26.337] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:26.458] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:26.941] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:28.398] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:28.398] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:28.398] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:28.398] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:28.549] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:28.560] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:28.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:28.681] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:28.741] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:28.802] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:28.862] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:28.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie bude soudit kapitána lodi ze zadržené ruské lodi, odmítl výzvu armády: \n\nFrancouzská justice bude soudit čínského kapitána lodi z takzvané ruské stínové flotily, kterou francouzští vojáci ve středu zadrželi u pobřeží Bretaně. Prokuratura proti němu vznesla obvinění kvůli tomu, že se odmítl podřídit výzvě armády. Soud se bude konat 23. února. Loď je podezřelá i z účasti na nelegálních přeletech dronů v Dánsku. \nhttps://www.idnes.cz/zpravy/zahranicni/francie-soud-cina-kapitan-rusko-stinova-flotila-dansko-dron.A251002_144101_zahranicni_dtt \n#CzechNews #News #Press #Media","created_at":1759429981,"id":"65e8d943d79d21ccf1e308a2d409ec8ce7aa3e6e76934bb476b7875abc710742","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"07f0d4d398d367b8f5892e3aa31ddb19c56949b1dfac52a4c1b1d9a2b727b1215ab68a4f7d0b69bbbe282fcae6b8e1076fb09fcb8573ab9675eed4321ff8be6e","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:33:28.983] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:29.043] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"気絶します","created_at":1759429975,"id":"3afb674c8b7c4d8dad7c0d450ca4940bb0fc70d676bae1e1151e19236477ccdb","kind":1,"pubkey":"c81c7999f7276387317878e59d7c321093a433977ee6811ca76dc3a9738e1869","sig":"3a77d4ab09fa1cc3b6a7c084b050f6a5ae5af04415440ffa731f782bfae42cd87a9973c5a697da87578c418e7dce24cafb0d8a300f2e52340503f6c01fac402c","tags":[]}] +[14:33:29.104] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:29.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:29.225] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:29.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:29.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:29.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:29.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:29.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:29.588] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:29.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:29.709] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Allen Michie\",\"about\":\"Jazz and arts critic for Artsfuse.org, record collector, record salesman on Discogs (Blythe Amusement), manager of the Miles Davis Discussion Group on Facebook, and administrator of Jazztodon.com for Mastodon. I'm a higher education administrator in the great city of Austin, Texas. You can read my reviews and articles at allenmichie.medium.com.\",\"picture\":\"https://jazztodon.com/system/accounts/avatars/109/480/087/945/639/971/original/4cfcdf56a5776332.jpeg\",\"banner\":\"https://jazztodon.com/system/accounts/headers/109/480/087/945/639/971/original/e68d9c614da645a4.gif\",\"nip05\":\"allenmichie@jazztodon-com.mostr.pub\",\"fields\":[]}","created_at":1759429805,"id":"6c849b668f81aecfaf5a28904a7adfbbaaaab4c83919f5192136301ccc3a5246","kind":0,"pubkey":"bdd68113a3ced3368393ce61a6795dc13fa9fa291953b5992eca6beef7116f64","sig":"64e64d55f6fb4b23161a3364dd82fedd2762be45969a93c1baa79adb396bc17e4adb402b5e012423eb3290a5fa30f400331c22fafba6b2e302e32961e8262a0b","tags":[["proxy","https://jazztodon.com/users/allenmichie","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:29.770] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:29.830] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:30.253] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:30.736] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:30.797] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:30.917] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:31.401] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:32.858] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:32.858] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:32.858] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:32.859] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:33.011] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:33.071] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:33.097] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:33.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:33.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:33.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:33.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:33.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:33.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🔔 Francie bude soudit kapitána lodi ze zadržené ruské lodi, odmítl výzvu armády: \n\nFrancouzská justice bude soudit čínského kapitána lodi z takzvané ruské stínové flotily, kterou francouzští vojáci ve středu zadrželi u pobřeží Bretaně. Prokuratura proti němu vznesla obvinění kvůli tomu, že se odmítl podřídit výzvě armády. Soud se bude konat 23. února. Loď je podezřelá i z účasti na nelegálních přeletech dronů v Dánsku. \nhttps://www.idnes.cz/zpravy/zahranicni/francie-soud-cina-kapitan-rusko-stinova-flotila-dansko-dron.A251002_144101_zahranicni_dtt \n#CzechNews #News #Press #Media","created_at":1759429981,"id":"65e8d943d79d21ccf1e308a2d409ec8ce7aa3e6e76934bb476b7875abc710742","kind":1,"pubkey":"c6716205cf41794c1abe4619be582e8627f3b76df284a414ba09e4cdecd92f88","sig":"07f0d4d398d367b8f5892e3aa31ddb19c56949b1dfac52a4c1b1d9a2b727b1215ab68a4f7d0b69bbbe282fcae6b8e1076fb09fcb8573ab9675eed4321ff8be6e","tags":[["t","CzechNews"],["t","czechnews"],["t","News"],["t","news"],["t","Press"],["t","press"],["t","Media"],["t","media"]]}] +[14:33:33.521] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Searches for “second job” have hit an all-time high, surpassing 2008 crisis and COVID levels.\n\nSecond jobs are the new normal.\n\nhttps://cascdr-chads-stay-winning.nyc3.digitaloceanspaces.com/jamie-pro/226249/uploads/1759429760967-G2RlqpaXcAArH_H.jpg\n\nShared via https://pullthatupjamie.ai","created_at":1759429981,"id":"552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","kind":1,"pubkey":"85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","sig":"2c25ca686291c59fc9c3f8454b9f1db523ea54fd5bedef16d4a74e71331a92206297b2d7886e2b5c3f038345a1dfbe51f01494b07b59e7af168b07ff05efe712","tags":[]}] +[14:33:33.581] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:33.642] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:33.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:33.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:33.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:33.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:33.944] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:34.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:34.065] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:34.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Takako 🐀\",\"about\":\"Life is never dull living among urban wildlife. #BeKind 🦫🐀🐁🐿🐇🕊 🐝🐛 ⓥ #plantBased #humaneGarden #wholesome #fedi22 

The header photo is 3 of our #CompanionRats, Sammi & Ziggy, and Lil Marty eating snacks together in the pet carrier. 

Avi is an otter with a squirrel and a rabbit, in chartreuse background color.\",\"picture\":\"https://a.mindlycdn.com/accounts/avatars/109/329/325/169/782/964/original/5f0572b24d1701b8.png\",\"banner\":\"https://a.mindlycdn.com/accounts/headers/109/329/325/169/782/964/original/e00f913314483741.jpeg\",\"nip05\":\"otterX@mindly-social.mostr.pub\",\"fields\":[[\"Wildlife & FancyRat videos\",\"https://loops.video/@otterX\"],[\"PlantBased ⓥ\",\"http://otterx.wordpress.com\"],[\"Love Rats\",\"https://twitter.com/otterx/status/834098425180336128?s=46&t=RmV3HvLanutHwPUZe74ovA\"],[\"♡\",\"https://justmytoots.com/@otterX@mindly.social\"]]}","created_at":1759429809,"id":"290529e57c920118987c98185be92b6a9c896d0fc38d8a04eb9d050fe31cd439","kind":0,"pubkey":"735468c8ebc5d0639397b26bc95961902742706c8d45ec5283657f23b93eb426","sig":"7a9d97781a893f774c6db41dab8ed2ff812e69a3fb641e9ddb3c14fa80309081061856c5879c2392f6b2006ce7214ca0831e3fa739c54221ea90b3239e3cd552","tags":[["proxy","https://mindly.social/users/otterX","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:34.187] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"keycrux\",\"about\":\"The Keycrux key storage server.\\n\\n Running inside AWS Nitro Enclave.\\n\\n Validate instance attestation at https://enclaved.org/instances/npub1z25k60yz85rhhms36t6c2jpa75hghypgk67ydhzlen38uckv03js2r69fc\\n\\n Learn more at https://github.com/nostrband/keycrux/blob/main/README.md\\n\\n DEVELOPMENT INSTANCE, may break or get terminated at any time!\\n \"}","created_at":1759429809,"id":"1831a13326ca8b884adc6fc52e9a19d30d8d78bc8d9be36c0b9c1b140825fb00","kind":0,"pubkey":"12a96d3c823d077bee11d2f585483df52e8b9028b6bc46dc5fcce27e62cc7c65","sig":"185a1febb68ca294dd87e4f9231984c9b2b27c5d7da6c18052abdaca38adbbe5638f2fc205bcd0190f2f2ccbca28c79da8c15ac94a9b113f5de4c630eae6f87a","tags":[["t","keycrux"],["r","https://github.com/nostrband/keycrux"]]}] +[14:33:34.247] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:34.308] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:34.731] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:35.214] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:35.274] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:35.395] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:35.879] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:37.335] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:37.335] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:37.335] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:37.335] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:37.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:37.556] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:37.617] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:37.677] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:37.738] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:37.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:37.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:37.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:37.980] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:38.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I honestly don't want to sell it... but I'm in another housing crisis. Thankfully no where near as bad as 2023 when the community helped me not be homeless. \n\nTurns out, they never had a title...\nI'm now paying into escrow and waiting for court.\n🙄\n\nI'm honestly sick and tired of dealing with housing issues...\nI want somewhere I can get roots into the ground for once.","created_at":1759429986,"id":"20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"1ea0a597f19359a5ec61a2d91b551c4989505da4fb342575f6f946f2d0ff47174b635ec3159c31ccf5c7c2fd52be6ee21cc1b4ff7f69dfc7d30ed7995b288cd8","tags":[["alt","A short note: I honestly don't want to sell it... but I'm in ano..."],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","674259ac0336f24d6633f715277568d3ecf8c4b937b09bea1d38a5b36111d124","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:33:38.101] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:38.127] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:38.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:38.248] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:38.309] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:38.369] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:38.430] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:38.490] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:38.551] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:38.611] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:38.672] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:38.732] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:38.793] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759429952,"id":"e83682507be196e9921bed7ec7ed25dad9850d9aa9363012493c013d29dc0e5c","kind":3,"pubkey":"8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca","sig":"925d43ae117873c534256303fd9627dd0a6583cf985825c51e446e44bc99656afc687336ddcecb49101d73b6244495a0408d2063c408ba85bd53cd0833a4555b","tags":[["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","ca9d68eb25620fc755e1b8c76b5f155f4c7e96d99c532c109a8b36d208bdce55"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","8b925acef507ccdb4b29ac3af74cf41529308e5e07f59eaeee335fc3e4116702"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","6fef351a19d32af35a80bba82fc31f80bdcafbe8d602f7448c9f5c382a884204"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","8af90d8eb3d036c1d512eda2ab3eae7f08417717618c5bb4439fbb0da092f6ca"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","23708a76e7090cb108d33e8801fd36262c475e5499b23eb87eee4a31f4f0144e"],["p","ad9d42203fd2480ea2e5c4c64593a027708aebe2b02aa60bd7b1d666daa5b08d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","037ea288ba589a7670f997c0d5b662d35039d914718270a1ba51d6ebe3f67f3f"],["p","ec7de4aa8758ba9e09a8c89d2757a1fa0e2cc61c20b757af52ae058931c1a33f"],["p","74764e0309d2048ff00b9bf620ec040101f15d63bb613e9d6a3fb68449059685"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b8a9df8218084e490d888342a9d488b7cf0fb20b1a19b963becd68ed6ab5cbbd"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","f133b246f07633fde1a894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","8f4a118e52573d17c197f1460be5a16eb942360b6ffa74315bfced3ef962a851"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","5b9eba46734663ba3b62b8801e347e75f3e00584248a053413824f9497c64406"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","605bf3430768ebba1dedac592adbafce9db82c4235d98c8f7ffdef4d948b9dda"],["p","eeb11961b25442b16389fe6c7ebea9adf0ac36dd596816ea7119e521b8821b9e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","c19cae45dcfe7b0b547d9c316d3446fa685d9d5d92da0b10ff08433a943e7fe6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","2250f69694c2a43929e77e5de0f6a61ae5e37a1ee6d6a3baef1706ed9901248b"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","4fc08891b7c37a846186277455951622dc8522cba9f41157b751cd7f54c9c1d9"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","0f4abdd53ab86b0c39d87928d85918eb9e22230426f6f23014c29a2bf4dd169a"],["p","4ce6abbd68dab6e9fdf6e8e9912a8e12f9b539e078c634c55a9bff2994a514dd"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","2e0a18aa76ff38eb464cf2d89132d78f57ddcc5ed438a9716e83f4c026c32045"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","3d70ec1ea586650a0474d6858454209d222158f4079e8db806f017ef5e30e767"],["p","f8d42124a72ed89896247ad912f47dd76ac6b6cdd10fe178f5e04acfead0d4a2"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","3fafbf9aa4b778bce90df1833845e1a8280f1d985357848b5939888cd7533f89"],["p","93b516bc9626fc30b633d6379f062345f1ef433107ced1a3c70d298a1b31985b"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","e61093809c30403b74392ec1853c1bc40b3364fd311fa2e5a919ef6c7e8bfde1"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","28ca019b78b494c25a9da2d645975a8501c7e99b11302e5cbe748ee593fcb2cc"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","3f224914b047e55c1df8b34c361a9c3b5f3468cea8a707a2e3d05edb7847b73c"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","c5f8bbbc7ca6c140cb20d6fa8cba36866ada6fce408168ae627d9007722c5ebf"],["p","b9d02cb8fddeb191701ec0648e37ed1f6afba263e0060fc06099a62851d25e04"],["p","3fc5f8553abd753ac47967c4c468cfd08e8cb9dee71b79e12d5adab205bc04d3"],["p","8806372af51515bf4aef807291b96487ea1826c966a5596bca86697b5d8b23bc"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"]]}] +[14:33:39.215] RECV nos.lol:443: \":true,\"write\":true},\"wss:\\/\\/relay.bitcoinpark.com\":{\"read\":true,\"write\":true},\"wss:\\/ +[14:33:39.698] RECV nos.lol:443: 9d73bf0ed16de325d52220211dbd5"],["p","e276111d03170 +[14:33:39.758] RECV nos.lol:443: 9c411bd754b2cb0cb14637550f68c4e1f48d7441fa832ccbf +[14:33:39.879] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","7c2bc3f9b27c30a05ddd9c67efad8d24f2ab2c9 +[14:33:40.362] RECV nos.lol:443: 68ba71cbf4f27fcbad7f76a03ff0766d6c6d8b3483d3c5898"], +[14:33:41.815] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:41.816] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:41.816] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:41.816] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:41.966] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:42.027] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:42.087] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:42.148] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:42.208] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:42.269] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:42.329] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:42.390] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:42.451] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:42.511] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:42.572] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:42.632] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:42.693] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:42.754] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:42.814] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:42.875] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:42.935] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:42.996] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:43.057] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:43.082] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:43.143] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:43.203] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:44.110] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:45.144] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:45.144] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:45.144] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:45.144] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:45.204] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,404\nBlock Hash: 00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c\nTimestamp: 2025-10-02T18:33:30.000Z\nTransactions: 3,226\nBlock Size: 1.41 MB\nBlock Weight: 3,993,992 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917404","created_at":1759430024,"id":"9153bb047368213b9453b0afe19745a449e2e613b10c197e6d5c6ee1f0c5c985","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"a661203c8ab9d804440ce0b7ae6ae885783bd03632e501bfc79b4591a6316bdc13398e0ff34e05e73e299e4e3fe5d67538d83635778094ed0b9a8c211b4ba771","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917404"],["published_at","1759430010"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c"],["new_block","true"],["block_height","917404"],["block_hash","00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c"],["block_time","1759430010"],["tx_count","3226"],["block_size","1481195"],["block_weight","3993992"],["difficulty","150839487445890.5"],["previous_block","0000000000000000000037e21227df2c071cd6c75004c4d71192674d161033bf"],["mempool_tx_count","7419"],["mempool_size","2925455"],["memory_usage_pct","5.4"]]}] +[14:33:45.316] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:45.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:45.437] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:45.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:45.558] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:45.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:45.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:45.740] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:45.800] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"今北産業","created_at":1759429990,"id":"14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"820f791dc1ae7ff34c2231efcc4cebd9ef80918b7b1a7351e26d9070a50aa0b3abebe9d4b2451ac29d715bdf634837612e81f6e3ed786252a9930cc532ea9c62","tags":[["e","394583d078917fccf65d8a30e9ad76869f3661a8265c529b05a5d0a0bf1b589e",""],["e","24c50bec7ae0c58d2b258c1b359ddb7657be8493cfb61e6ed96927e1de579121","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:45.861] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 102485.5EUR (0%)\nBTC: 0.0099\nEUR: 1015\nMethod: Revolut\nCreated: 2025-10-02T18:28:27Z","created_at":1759429989,"id":"ee172d33132b5b74e48cdc0bb050fec347b6d18e20c5623144158e4cdceedbee","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"65887309c22eead0e0d4b9f32ffc29c3579d8d653aec9a3ea074558ff7ca2c2ca1d8b9a139e02dbba2b79cd444b1c7e5d16d51516d5bc42b84ad75e78443a2ea","tags":[]}] +[14:33:45.921] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:45.982] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:46.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:46.103] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:46.164] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:46.224] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:46.285] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:46.346] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:46.406] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:46.467] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:46.527] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:46.588] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:47.494] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:48.719] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:48.720] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:48.720] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:48.720] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:48.872] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:33:48.883] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:33:48.944] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:49.004] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:49.065] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:49.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:49.186] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:49.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:49.307] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"He's in to some weird shit...😂","created_at":1759429998,"id":"d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"d0879c9708611e79ce2603a22fc160d6bf8c4b2f9af4251e84e114f68bc30807c389ef26f89cddd024a060c322390df267526fcfec23bac06e9556f5e97a713d","tags":[["alt","A short note: He's in to some weird shit...😂"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","4dbb6952f5f2e315c2781b575e3e02eebbe64df64858db1bceb81b86e2612f2e","wss://nostr.wine/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:33:49.367] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yeah definitely. But at scale. Work together with all Bitcoin meetups would be a beginning. Better than what we have now. Even though it wouldn't scale enough to reach everyone.","created_at":1759429993,"id":"0025ec6870c1da0eef5950248c126cef9c62bb23a2e6bf77da5f12b42b0b0d11","kind":1,"pubkey":"f901616f00a63f4f9c7881d4871a03df3d4cee7291eafd7adcbeea7c95c58e27","sig":"88ec0b36df24b0adb70eec8733b1ec1412aa8b33abfaa30482c02e384611df90846e227280de05e637841ac6fbc0f9fa5e81b0a930dc8aebe6edcaf9b0dc6c62","tags":[["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","6a6354914d59dd5b8fd18ac78e12e021b137b78d227c84ba10d6fe990a6c767f","wss://nostr-pub.wellorder.net","reply"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","","mention"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","","mention"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83","","mention"]]}] +[14:33:49.428] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:49.488] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:49.549] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:49.610] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:49.670] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:49.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:49.791] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:49.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:49.912] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:49.973] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:50.033] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"Architect\",\"display_name\":\"Stefan\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429862,"id":"ac8eaef3917feda31a86c707895bbdf7ca6d4c8eb1887b2e450e54e4a54362ed","kind":0,"pubkey":"e7e193587db2d86d61e337d16b5259b06c527ba4995e25adb5ebfde0b6097bcd","sig":"22397681f928fd4e673bcb66880e0b5d3b7e882c0431d50df483a4ad55785c5dec4cb86515ffc3ee30fc5b6157b10de2165e11750fc483fff17aabde64689ca7","tags":[]}] +[14:33:50.094] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:51.000] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:52.038] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:52.038] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:52.039] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:52.039] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:52.191] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:33:52.252] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:33:52.313] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:33:52.373] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:33:52.434] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:52.494] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:52.555] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:52.615] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:52.676] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:52.736] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:52.797] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:52.857] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:33:52.918] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:52.979] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:53.039] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:53.100] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:53.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:53.186] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:53.247] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:53.307] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:53.368] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:53.428] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:54.335] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:54.597] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"🟠 New Bitcoin Block Mined!\n\nBlock Height: 917,405\nBlock Hash: 000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039\nTimestamp: 2025-10-02T18:33:37.000Z\nTransactions: 2,413\nBlock Size: 1.52 MB\nBlock Weight: 3,993,948 WU\nDifficulty: 1.51e+14\n\n#Bitcoin #Blockchain #Block917405","created_at":1759430034,"id":"32f11ce6d04b2938f0166c772235e4bced659105ebef66930646e706b671c90e","kind":1,"pubkey":"e568a76a4f8836be296d405eb41034260d55e2361e4b2ef88350a4003bbd5f9b","sig":"8c38c88e51842a160a4aaada928a0bf7685c9a16407f1142bf45b3fb88b3db7e609fa4018a16d170b2704246fa13eb950745b5ad40c1cbe13d5402061d11dda2","tags":[["t","bitcoin"],["t","blockchain"],["t","block"],["alt","New Bitcoin block mined - Block 917405"],["published_at","1759430017"],["client","info_bot","ws://127.0.0.1:7777"],["r","https://blockstream.info/block/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039"],["new_block","true"],["block_height","917405"],["block_hash","000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039"],["block_time","1759430017"],["tx_count","2413"],["block_size","1595916"],["block_weight","3993948"],["difficulty","150839487445890.5"],["previous_block","00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c"],["mempool_tx_count","5323"],["mempool_size","1997735"],["memory_usage_pct","3.8"]]}] +[14:33:55.335] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:55.335] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:55.335] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:55.335] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:55.488] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:33:55.549] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:33:55.609] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:33:55.670] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:33:55.731] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:55.791] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:55.851] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:55.912] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:55.972] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:56.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","created_at":1759429998,"id":"c5bbbca355cab2adf622ec0a8fc134dcf55707bdc18d5aebc684f0615fce285f","kind":1,"pubkey":"c8383d81dd24406745b68409be40d6721c301029464067fcc50a25ddf9139549","sig":"e60c4077b62d278b1dc3ad117772e3518e7a6dd0c0ba8467750e644cb377f975ca4363c8ebe71429ee130e1743bff977bbd8ff901d514b163d8d82dd192731c9","tags":[["imeta","url https://i.nostr.build/IoP50bwnY5ph2kAy.jpg","blurhash ecMG#Jx]?bS4%M~qs:R*j[Rj?^M{M{s.RjkXRjRjWBjY-;oKWCWBay","dim 1284x1205"],["r","https://i.nostr.build/IoP50bwnY5ph2kAy.jpg"]]}] +[14:33:56.093] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:56.154] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:33:56.214] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:56.275] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:56.336] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:56.396] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:56.457] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:56.518] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:56.578] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:33:56.639] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:33:56.699] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"nip05\":\"\",\"name\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"display_name\":\"Ramon Abreu\",\"website\":\"\",\"lud16\":\"zippypuma17@primal.net\"}","created_at":1759429888,"id":"bc43e5ba55970e9be6e6346a4359027765f5f86cff17383a9d5ef69273c138fa","kind":0,"pubkey":"d367b0de35448a136b9800b9452c9313e94371bd3f19665bb03fa72e85232222","sig":"6825d55d33c99705dbae2085aa2963fa32bab4603a3033c037c72543f4a76b705b95613ac9c75355e12780e5eafc6d3cd9f09255f662cc74af6c936ef85391f8","tags":[]}] +[14:33:56.760] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:33:56.820] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:33:57.726] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:33:58.722] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:33:58.722] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:33:58.722] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:33:58.722] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:33:58.873] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:33:58.934] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:33:59.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:33:59.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:33:59.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:33:59.205] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:33:59.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:33:59.326] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:33:59.386] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:33:59.447] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I absolutely loved it here!\nUtah amazed me not just with its 150-million-year-old dinosaur fossils and 1,000-year-old wall paintings, but also with its incredible canyons. I can’t decide what’s more exciting: touching ancient history or witnessing the beauty of geology. Either way, it was totally worth the full day of exploring. Another one checked off the to-do list ✔️\nhttps://blossom.primal.net/ea089fffe3fae5c1a23b488ebd93b14ce5fe0bbe197d872d9aa645f609b30131.jpg\nhttps://blossom.primal.net/58e2bd01b8f1e3906df39dcb74ac8544b1404fdb5026f760c409eb546c4368cb.jpg\nhttps://blossom.primal.net/a47ea7983593f40aa58e4ee4d7f137160e287c754c6969e4645e07c070bbb7cf.jpg\nhttps://blossom.primal.net/50b8631745042a1a1097a727e34120d7f7d43def2b640606af2b702d890b86a0.jpg","created_at":1759429998,"id":"c97d95b20e8c7d087ade75d5b7d49228172b35acce3ab486378df77b2ae96490","kind":1,"pubkey":"f74eda3a6c57670ba0eda854dc53c7e4875fbdee7ca1a1344471bcdcc9f69133","sig":"1baa9df90744249df9576b05cd47f4c35d2961eb1f8b11e6a9d6c34398d0d767d8b60a65f19ce4c4af0bf3dd7b0f73b6f45e32098c8798dce3a288490a9cd834","tags":[]}] +[14:33:59.507] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:33:59.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:33:59.630] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:33:59.690] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:59.751] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:33:59.812] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:33:59.872] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:33:59.932] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:33:59.993] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:00.053] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:00.114] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:34:00.174] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:00.235] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430034,"id":"4aa60c50dac0c7612e538132789f01ceff7083c1fe2426cc98415a203552adad","kind":3,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"698862fa3388b38318ee9407c442176a3b67dadc005aebd2ab3c296362c85b69b4292e5d1850c94bb68731681c4a6c6c6fe1cbac4e8a632a9434804f22f2c426","tags":[["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"]]}] +[14:34:00.296] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:34:01.203] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:34:02.237] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:02.238] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:02.238] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:02.238] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:02.389] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:02.450] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:02.510] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:02.571] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:02.631] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:34:02.692] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:34:02.752] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:34:02.813] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:34:02.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:34:02.934] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/e10Az5m.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430006,"id":"fe6b1db6db9be5eec48b1adc2dd95f7b88d552e614bb098bc3916beba979fee0","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"28a44f13a18dafc90965f3f4e518803d0b256c523e997b89263297bc147230d03886250f656a8ffc5193535712fbbf4d1e57ff51357f912569890d4de1e49600","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:34:02.995] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:03.055] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:03.081] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:03.141] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:03.202] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:03.262] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:03.323] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:03.384] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:03.444] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:03.504] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:03.565] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"I'm me what can I say\",\"display_name\":\"Hodl Wolf \",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429889,"id":"c4a7dc57c0998920ae60d808208bfa3ee77e5208c76104532c342fbdbd835aa6","kind":0,"pubkey":"20f2acbf3a7b0ce2a986d8ee89ce14d0a3bdb80a0d5784f431860cc496fe7b76","sig":"15d11042975344b9b900b3bc2fca2d0782a2d390b92f68a3d29521a76b6807fe9af820a994eb70d5972cc3bd0e804333740b41d8d7b7500f0c11273953672cdf","tags":[]}] +[14:34:03.625] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:03.686] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430034,"id":"4aa60c50dac0c7612e538132789f01ceff7083c1fe2426cc98415a203552adad","kind":3,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"698862fa3388b38318ee9407c442176a3b67dadc005aebd2ab3c296362c85b69b4292e5d1850c94bb68731681c4a6c6c6fe1cbac4e8a632a9434804f22f2c426","tags":[["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"]]}] +[14:34:03.747] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:34:04.652] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:34:05.691] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:05.691] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:05.691] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:05.691] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:05.843] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:05.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:05.965] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:06.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:06.086] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:06.146] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:34:06.207] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:34:06.267] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:34:06.328] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8yxxl5trvslpznfqkw57larplsjhlt2fsuzf87gppemhxue69uhkummn9ekx7mp0qgsfln36agetx43hsw8mgkm4hce9j46zu94m8er59nyzhv74p7gg0esrqsqqqqqp85udp4","created_at":1759430015,"id":"fc02436bc77a38166c70fa15b6de131c4926310cfbd181821fee157b76c76244","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"caf71af9088488dcb9a7fcf17650693c9832e7913e1efeb0dbc98d556fe69b7ec7bc14f783b317bfda1e58a3cc7b94e2859a20fc64b18ca87c92289a51e78048","tags":[["alt","A short note: I'm not stopping. \nnostr:nevent1qqs0u0hxmw99mjdr8y..."],["p","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6","wss://relay.primal.net/"],["q","fe3ee6db8a5dc9a3390c6fd163643e114d20b3a9eff461fc257fad49870493f9","wss://nos.lol/","9fce3aea32b35637838fb45b75be32595742e16bb3e4742cc82bb3d50f9087e6"]]}] +[14:34:06.389] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"なんだよ","created_at":1759430012,"id":"665de5364a168cd5b3835d3af571ec9012ef62ee7f9bf99f5612d15c1ad7390f","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3f7d552b68b0abb0a246938d7e2e9e84a15331a407667bdaef40625fb8d06635aef3ee59a97b4ec493d11f0f381aee4505120a622abfc50b05c2ab24a0a64141","tags":[["e","14963c7b190ffa5ee066432f3661492c1337e8620a17f3e9d218b41e9a9f3752",""],["e","981676a1c0c498100d9f6501c4ecf8cd087635b33c03c3884d972f42c4976530","wss://relay.damus.io","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:34:06.449] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:06.510] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:06.570] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:06.631] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:06.691] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:06.752] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:06.812] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:06.873] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:06.933] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:06.994] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:07.054] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:07.115] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:07.176] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430034,"id":"4aa60c50dac0c7612e538132789f01ceff7083c1fe2426cc98415a203552adad","kind":3,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"698862fa3388b38318ee9407c442176a3b67dadc005aebd2ab3c296362c85b69b4292e5d1850c94bb68731681c4a6c6c6fe1cbac4e8a632a9434804f22f2c426","tags":[["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"]]}] +[14:34:07.236] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:34:07.757] RECV relay.laantungir.net:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:08.085] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:34:09.129] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:09.130] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:09.130] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:09.130] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:09.282] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:09.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:09.404] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:09.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:09.525] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:09.586] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:09.646] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","created_at":1759430027,"id":"a5db33eadfcfc0ea9c0a0533711fb6459fb31eba16f80e51e962e60bb5a4231a","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"11cf1f85e85dc6859953512204c0596d8e87f12c684832db5dfc7881b8881e97716fdbd38801555d1ebc760da9a44c16583a0b7431810453ec500a662c44fb9b","tags":[["alt","A short note: https://image.nostr.build/f892510beeb6b3e8007e391e..."],["r","https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg"],["imeta","url https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","x 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","size 50315","m image/jpeg","dim 1080x988","blurhash ;3SijY00Di~ppH~q%3~q%3M{9FIURPa#IoRjRjR%D*M{V[o#t7V[xutRba?cRk%2-;x]xu$*ofNGIoRkxukCNGWVaKe.kWo}9FaeWBIUayRkWCn+x]D%4nMxIoNGM{V@Rj.SD%aJtRI:WAnjs;oN","ox 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","alt "]]}] +[14:34:09.707] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:34:09.767] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917404\nWeight: 3993992\nhttps://thebitcoinblockclock.com/blockstr/00000000000000000000c8daaaae97ab8833e128e20398750edd525667fc512c.png","created_at":1759430025,"id":"a54f660039d62e259f8c326808cc62b47bb6325569015206bf19c58849054e3d","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"944f64887945dca7277c674e5d3bf779755366dc60becaf3055c181556858c390368ac93b38fa287c3c166ec3d1bb3268286d33ed5cf424477d4ca13a659574d","tags":[]}] +[14:34:09.828] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub16ws45r63qruealwvc697493nsdzs2k93hw9j8dc2d0affjakskuqdewfmt 🐳 zapped nostr:npub1trr5r2nrpsk6xkjk5a7p6pfcryyt6yzsflwjmz6r7uj7lfkjxxtq78hdpu 21,000 sats\n\n💬 🆓\n\nhttps://image.nostr.build/67f24a884ab5f7d37c1cdadefa17476f498e757953131809f2099076bcff1630.jpg\nhttps://raw.githubusercontent.com/ray-bun/Twitter_Bitcoin_Lightning_Tipping_Bot/master/memes/bvnb.gif\nhttps://image.nostr.build/b886d4b6aa486fa9a571b9a503c3496365ddd9cea88e346ed4f028d832694add.jpg","created_at":1759430020,"id":"b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"159b4b8ca6cd24dff32797e423bfaf1c065283b59c8036463443845b00d48548aa1b9e3f72d25a0b52fbdd3fd2dc06830f122b1b07cc815d69d682a728e5bdb6","tags":[["t","fatzaps"],["t","zap"],["t","nostrzap"],["p","d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","","mention"],["p","58c741aa630c2da35a56a77c1d05381908bd10504fdd2d8b43f725efa6d23196","","mention"]]}] +[14:34:09.889] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:09.949] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:09.980] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:09.980] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:10.041] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:10.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:10.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:10.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:10.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:10.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:10.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:10.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:10.525] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:10.586] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430034,"id":"4aa60c50dac0c7612e538132789f01ceff7083c1fe2426cc98415a203552adad","kind":3,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"698862fa3388b38318ee9407c442176a3b67dadc005aebd2ab3c296362c85b69b4292e5d1850c94bb68731681c4a6c6c6fe1cbac4e8a632a9434804f22f2c426","tags":[["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","f776bcc12271be79fc71b655f3cbfeb3a8a169f33ee1335fcc0c22829901da0a"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","cc76679480a4504b963a3809cba60b458ebf068c62713621dda94b527860447d"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","870744363b1a5986d6773b5706dde258c039f6d34a5ffc270915033a6a67c82c"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","f1b911af1c7a56073e3b83ba7eaa681467040e0fbbdd265445aa80e65c274c22"],["p","64bfa9abffe5b18d0731eed57b38173adc2ba89bf87c168da90517f021e722b5"],["p","6d5f85c4be85fabb803716cc002f46c88ad5d44dae8098f057482640a3f7e400"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","7937540697665014c0de0809cdc75f37e900b1091a6b3d812af4178fe672caa9"],["p","aa9539e1ec76ee5f79c8e3f0c23d62f1adf40a69a05bb0728d792d17b75d8179"],["p","b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","1b2f3c135c9e5a9d6f70de02f0b7b546c11855d0453f6682bc874d6bbe64dfd6"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","50c59a1cb233d08d5a1fb493f520c6b5d7f77a2ba42e4666801a3e366b0a027e"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","0418ca2d6cd6c7fbc4e0391bb745027023a7edbc38f2a60fc3b68f006efb85eb"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","efcb5fc526c91ffd51aaef037009f22eb4d3300a141c1754af439e085680aa8e"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c582af78dff442700ec59e21786532a7074c00be8b7b1eac989bbf62698069cc"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","34fad5244f7de844c1c9e001e2737ed23f3ea96ceda2e20d241d46fee5824f16"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","433e80c14ff7b8e16e179ccec35f55833df7dd5a5a063d23117b4b01b6f97170"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","f5f98ba54045a2fa8df2a97c35fc30299b9e0d51a701795c040ca80cedaf39b4"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","5fd004926969381ac2bb3a32720036d9f9632d29fb22dc1bf5d8fb1c9e265798"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","63d59db8d29abe29db7380beb912b8f600237332b6c9978b208694e4be170f6f"],["p","296842eaaed9be5ae0668da09fe48aac0521c4af859ad547d93145e5ac34c17e"],["p","dfcf6ae4111c1bb29d8cd96df8793aeded34f78764b5089da32e0f3edf7a9e2f"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"]]}] +[14:34:10.646] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430032,"id":"6a742c276f8a3c5dfb9992223054a47c401ef2ebbae8917a89c2176ce4660667","kind":3,"pubkey":"52e24e06082f9e6486b8424fc8d4f36037aae585cc281c80d325d34a3919163f","sig":"af9cb84ade76a301faebd75d1c9fa4a93b3352e82bc47c1544e4380de50b2c6ad2f8b7adbd9cecd7b79af786fd6173d3642827fdf416a22923ecddea20cd8f8d","tags":[["p","a99627561cad4ba60f60f6889806e792f9f8b39f069ca0664bb2843e5a533e45"],["p","dfac05175167a3465031ae88bbbfbb60c5df80d5465cc91766fb73438a2af009"]]}] +[14:34:11.552] RECV nos.lol:443: 894133ac270ab8750502b64a9779c0bac3c9228198dda"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab +[14:34:12.586] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:12.586] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:12.586] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:12.586] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:12.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:12.868] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","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","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:12.929] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:12.990] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:13.050] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:13.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:13.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:13.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:13.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","created_at":1759430027,"id":"a5db33eadfcfc0ea9c0a0533711fb6459fb31eba16f80e51e962e60bb5a4231a","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"11cf1f85e85dc6859953512204c0596d8e87f12c684832db5dfc7881b8881e97716fdbd38801555d1ebc760da9a44c16583a0b7431810453ec500a662c44fb9b","tags":[["alt","A short note: https://image.nostr.build/f892510beeb6b3e8007e391e..."],["r","https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg"],["imeta","url https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","x 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","size 50315","m image/jpeg","dim 1080x988","blurhash ;3SijY00Di~ppH~q%3~q%3M{9FIURPa#IoRjRjR%D*M{V[o#t7V[xutRba?cRk%2-;x]xu$*ofNGIoRkxukCNGWVaKe.kWo}9FaeWBIUayRkWCn+x]D%4nMxIoNGM{V@Rj.SD%aJtRI:WAnjs;oN","ox 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","alt "]]}] +[14:34:13.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get nostr address nostr:npub1sma67s58kmv8wxlf7ar4f7v9lny5vv9gsk3f4vyws424r0s75fksx8k6x5 ","created_at":1759430025,"id":"14d496beef844fba106fa1db5df6653abbb315655d6d8c9a2bfca1f8e681daaa","kind":1,"pubkey":"ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371","sig":"2ccf9f662bb646d8e6857db5481260213ce78bc565990e0f249808adb435bd126f2ac0616817bf5f9c8b9ff1f069dedf947c081a3e109b657bc6ce1befee91cb","tags":[["e","b8f6fd076ac6a0f349d684e72e41cb949b46bb69513aff3ffb93a9128d70df84","","root"],["p","ae5a910d2a3f43b9e872bd917e97f8184a58ce35daf6e9cfe974095223cd8371"],["p","86fbaf4287b6d8771be9f74754f985fcc94630a885a29ab08e855551be1ea26d","","mention"]]}] +[14:34:13.378] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:13.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:13.499] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:13.560] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:13.620] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:13.681] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:13.742] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:13.802] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:13.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:13.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:13.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:14.044] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:16.167] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:16.167] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:16.167] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:16.167] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:16.321] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:16.382] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:16.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","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","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:16.503] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:16.564] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:16.624] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:16.685] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:16.745] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:16.806] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:16.866] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","created_at":1759430027,"id":"a5db33eadfcfc0ea9c0a0533711fb6459fb31eba16f80e51e962e60bb5a4231a","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"11cf1f85e85dc6859953512204c0596d8e87f12c684832db5dfc7881b8881e97716fdbd38801555d1ebc760da9a44c16583a0b7431810453ec500a662c44fb9b","tags":[["alt","A short note: https://image.nostr.build/f892510beeb6b3e8007e391e..."],["r","https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg"],["imeta","url https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","x 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","size 50315","m image/jpeg","dim 1080x988","blurhash ;3SijY00Di~ppH~q%3~q%3M{9FIURPa#IoRjRjR%D*M{V[o#t7V[xutRba?cRk%2-;x]xu$*ofNGIoRkxukCNGWVaKe.kWo}9FaeWBIUayRkWCn+x]D%4nMxIoNGM{V@Rj.SD%aJtRI:WAnjs;oN","ox 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","alt "]]}] +[14:34:16.927] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:16.987] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:17.048] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:17.109] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:17.169] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:17.230] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:17.290] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:17.351] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:17.411] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:17.472] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:17.532] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\"123456789\",\"display_name\":\"amiraghajanpor5@gmail.com\",\"picture\":\"https://blossom.primal.net/f7526d48a617b4ff201144ab2afa31939cdbc0a4179c9b60a989a5ea820c5b5c.jpg\",\"banner\":\"https://m.primal.net/HQTd.jpg\"}","created_at":1759429934,"id":"cf23f642130d1db17c3f28f6ed5c883b35d290ae43e438f1fe7205c731e44508","kind":0,"pubkey":"5a2a46d19ef1d0bbed752a01a682ed2fc767cb982f864acf2694353fdd1eb3f7","sig":"7b1b062cd88d94947dd56ac4cb590a56b876a9112c0b74a020028f5ca35ebea45f9a7a3bb9b9596f6533aea57e5d8a2bc72432167a2e0be39dee9ab84cef6c1b","tags":[]}] +[14:34:17.593] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:19.676] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:19.676] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:19.676] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:19.676] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:19.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:19.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:19.948] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","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","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:20.023] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:20.083] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:20.144] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:20.204] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:20.265] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:20.325] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇷🇺🇪🇺📞 PUTIN AFIRMA QUE EUROPA ESTÁ MORRENDO\n\nLíder russo diz que continente europeu desaparece devido a políticas migratórias e econômicas. Europa que todos amavam está sumindo.\nhttps://files.catbox.moe/y09df3.mp4","created_at":1759430029,"id":"ffbd7efecc1fd916886cc2c936f02d4f467b3e063cfeb292abd899d3f6577d92","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"63b4cd2a27d336a8d51365771449f3dfd94533cc13bebf46569178c444bf9dffd159695046377380aa90a2536fe319280fc1ba1d4cd0971662dbfdf6ca93bf02","tags":[["video","https://files.catbox.moe/y09df3.mp4"]]}] +[14:34:20.386] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","created_at":1759430027,"id":"a5db33eadfcfc0ea9c0a0533711fb6459fb31eba16f80e51e962e60bb5a4231a","kind":1,"pubkey":"98940182916063c18406168ffb5151b44359bf2cc09d23451e6e428e100df72f","sig":"11cf1f85e85dc6859953512204c0596d8e87f12c684832db5dfc7881b8881e97716fdbd38801555d1ebc760da9a44c16583a0b7431810453ec500a662c44fb9b","tags":[["alt","A short note: https://image.nostr.build/f892510beeb6b3e8007e391e..."],["r","https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg"],["imeta","url https://image.nostr.build/f892510beeb6b3e8007e391e7b00bd5f0ac58c0e4322faa7d3c75bc01f9d8929.jpg","x 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","size 50315","m image/jpeg","dim 1080x988","blurhash ;3SijY00Di~ppH~q%3~q%3M{9FIURPa#IoRjRjR%D*M{V[o#t7V[xutRba?cRk%2-;x]xu$*ofNGIoRkxukCNGWVaKe.kWo}9FaeWBIUayRkWCn+x]D%4nMxIoNGM{V@Rj.SD%aJtRI:WAnjs;oN","ox 8d8bfdc86b4fe7e7a96eb558f7b034abc99886c1c203d024318189af982e79a1","alt "]]}] +[14:34:20.446] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:20.507] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:20.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:20.628] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:20.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:20.749] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:20.810] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:20.870] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:20.931] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:20.991] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:21.052] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:21.112] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:21.173] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:23.294] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:23.294] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:23.294] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:23.294] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:23.446] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:23.457] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:23.517] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:23.578] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:23.638] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","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","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:23.699] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:23.759] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:23.820] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:23.881] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:23.941] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:24.002] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:24.063] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:24.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:24.184] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:24.244] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:24.305] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:24.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:24.426] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:24.486] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:24.547] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:24.607] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:24.668] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:24.728] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:26.854] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:26.854] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:26.854] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:26.854] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:27.075] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:27.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:27.196] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:27.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:27.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","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","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:27.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:27.439] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:27.499] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:27.560] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:27.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:27.681] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:27.741] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:27.802] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:27.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:27.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:27.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:28.044] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:28.105] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:28.130] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:28.191] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:28.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:28.312] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:28.372] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:30.495] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:30.495] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:30.495] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:30.496] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:30.648] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:30.708] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:30.768] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:30.829] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:30.890] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","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","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:30.950] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:31.011] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:31.071] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:31.131] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:31.192] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"JUST IN: 🇷🇺 🇺🇸 Russian President Putin offers his condolences to Charlie Kirk's family and praises his legacy following his assassination.\n\n[Video - view in Telegram post ⬇️]\n\nSource: [BRICS News](https://t.me/bricsnews/8654)","created_at":1759430031,"id":"44ec98b6b6b187ec4d077659597a5368d0115a1ba400dee10c0385e90522fcce","kind":1,"pubkey":"34f2e819da2afd59fcc6866f9ae7a3757d02ae9804ff73f764f4f2c7657c4ebb","sig":"4caa5d26f3f34e9938960e6b3138a1c4fe961e6ca7b20ede27cb22c4eec2bec20e07388f79214924e7503c4c6d6aef4866f2fbcf91707930faa7501e328e5b96","tags":[]}] +[14:34:31.253] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:31.313] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:31.374] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:31.435] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:31.495] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:31.556] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:31.616] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:31.677] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:31.737] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:31.798] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:31.858] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:31.919] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:31.979] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:34.069] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:34.069] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:34.070] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:34.070] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:34.221] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"In the UK, Keir Starmer made a point of saying ID cards would be compulsory so he can then say he has taken feedback on board & will now make them voluntary whilst consulting the public. Then, increasingly it'll be convenient not to use it & in parallel inconvenient to use cash & convenient to use CBDCs. By 2030, both will have critical mass... unless people are vigilant & energetic in their resistance. \n\n","created_at":1759430072,"id":"a616aacb518c309010d853ecf8efcd60306d3c0ff6c5e776b44ccde4d0be657e","kind":1,"pubkey":"d712474feafbab89fb9e6cd4ff01239e3b6a1a96991f45e564b2debf937a0191","sig":"e9483833c624ca1e2122b28593f4f229085814b9c12c4338a0eacfaff88e3cf7354c583361c74b9f5a318ec9d9e996a97b5f054c7a99c57cf00c02bfdf3f59ac","tags":[]}] +[14:34:34.282] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:34.343] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:34.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:34.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:34.525] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","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","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:34.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"For those of you following along the other day regarding DeMu and interests were piqued, check out link below to the Satellite Spotlight! Rumor has it the full video is available aomewhere.\n\nThis was a decentralized and zappable (boostsble) live stream concert with 4 bands and multiple MCs from around the world. The tracks were extracted, mixed/mastered, and now available for all of DeMu to enjoy and zap. v4v and a lot of very hard work from a lot of people made this possible. \n\nLive hits different, check it all out! \nnostr:nevent1qqspg2se30aa9ddtrekjfmatr5qpnewpzxgkrxray458k0aj5c75gwspzemhxue69uhhyetvv9ujumt0wd68ytnsw43z7q3qsw5mjpdp288gavz6lwruc3ehuwdzjv34fksuaujp2s7c3h5g5wxqxpqqqqqqzs99u0q\n#demu #satellitespotlight #livemusic #music #tunestr","created_at":1759430047,"id":"baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"39c991e6df2d146ac893714fa5945aafddb999906e1a6e3882574499fce972474b17ec223a4cfb1be3d704367f5f331db9e503a5bdc9e583f8adc4b8ef4c1563","tags":[["e","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a","","mention"],["p","83a9b905a151ce8eb05afb87cc4737e39a2932354da1cef241543d88de88a38c","","mention"],["q","142a198bfbd2b5ab1e6d24efab1d0019e5c1119161987d25687b3fb2a63d443a"],["t","demu"],["t","satellitespotlight"],["t","livemusic"],["t","music"],["t","tunestr"]]}] +[14:34:34.646] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:34.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#Bitcoin Block Art by Blockstr!\nHeight: 917405\nWeight: 3993948\nhttps://thebitcoinblockclock.com/blockstr/000000000000000000013021fc701faa37e1df6175b069c84f9f61de09864039.png","created_at":1759430040,"id":"d54f0cdadb634bae3423eb24c5902c6cb2f9fc8afe65398ba516523ad9292a43","kind":1,"pubkey":"3fdf8b43d2e6eb59fc399f7cb1b81923d1dff0215d45a11e1c1f279827eaaad8","sig":"dc6982c7185c5cea024970d4b76fa12fe702bfbeaea1cfdf0f19531ecbc564f4546b4c9a6151b1c389f9a63289ef9068ebb778d4286ace9a17662859aab0571a","tags":[]}] +[14:34:34.767] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I agree PCSAM is stupid. As are payments for drugs and sex and other immoral behaviors. And payments for terrorism and money laundering. And political bribes and assassinations. And for buying high fructose syrup laden addictive carbon water beverages. \n\nI can think of a large number of things I don’t want bitcoin being used for…things that law enforcement agencies might try to compel your node to filter.","created_at":1759430034,"id":"a2081b549dbf7123286dcbafb44e31cec6980c1c3cd9e5d0555d92a177bd7a0e","kind":1,"pubkey":"4f4f82846698ff66ae5fa9fad4c0c4eb7823afb07fa9f54ea9d15f1217ae96cc","sig":"8ae8e0fff7e38cf10c746364255d81b2d20f63f81118450aa1448eb2c3c811f0e6edc787deed3d5b824d8f75699221ee5b25bbc9163f472198219e9072a3dab3","tags":[["e","904a60f171463d37212f548f21ac2e3089083bff0c792c395c158c0b146f2b04","wss://offchain.pub","root"],["e","4bfa7ce9f411e87365f5ce4c162a569e0fcde1f8808a8310e795146ad7f47902","","reply"],["p","c02bedab495a8d73e23192fa161a0b8344821f48446811b1e810fac65b584f49"]]}] +[14:34:34.827] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:34.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:34.948] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:35.009] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:35.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:35.130] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:35.191] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:35.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:35.312] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:35.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:35.433] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:35.493] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:35.554] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"{\"wss://relay.nos.social\":{\"read\":true,\"write\":true},\"wss://nos.lol\":{\"read\":true,\"write\":true},\"wss://purplepag.es\":{\"read\":true,\"write\":true},\"wss://relay.nostr.band\":{\"read\":true,\"write\":true},\"wss://relay.damus.io\":{\"read\":true,\"write\":true},\"wss://nostr.mom\":{\"read\":true,\"write\":true},\"wss://relay.primal.net\":{\"read\":true,\"write\":true}}","created_at":1759430057,"id":"641373ae26679f5ab1a9cc65b7851764c1fa77d75c5c8706f7ee64da53f08dbf","kind":3,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"7404f56cadc3ce03cda38aa29f8c52d56e58c59b9ac5e647faf4cc915648bf402278b75cbd8b9fba3ba6ebd8e269b974cbf89beeceab1bf707daf34a2d113601","tags":[["p","e24a86943d37a91ab485d6f9a7c66097c25ddd67e8bd1b75ed252a3c266cf9bb"]]}] +[14:34:36.019] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the hex pubkey of nostr:nprofile1qqs9pk20ctv9srrg9vr354p03v0rrgsqkpggh2u45va77zz4mu5p6ccpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgkwaehxw309a5xjum59ehx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz7qrxnfk","created_at":1759430075,"id":"cf9805ab0a6528d95a06dbe601f5dbb7910792c86aaa4692113f862d099637b8","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"995f2c9c755875e0e06881602baa18bac5a00f09a164e3f81b56e61bf36fd6ee352ce02c2b044fbd353a5e6c7879a2b96fe1142b5f736dc43f07d23bb9012a41","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["e","5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","wss://nostr.bitcoiner.social/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[14:34:37.697] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:37.697] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:37.697] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:37.698] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:37.849] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Wine hole 😂","created_at":1759430077,"id":"ef693d0ad79bf411f9d90d9fd1f19f4e531766d461e19f634dfc48737e40a93b","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"68ec8a06ad63e12c2e06e96eff2b4e48efbb1a7a64730315a288187f8b1fc7370280c726d76a21958bc95ce55d130dc02be3c6fe911e72526fee4beb233e778c","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","a8b83c760779d8e796bf63c590c188ad9ca2c5b39802377b6ca4207008ba4435","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:34:37.910] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I grew up calling them “the tribe.” Every memory with my grandparents listening on a radio had that name and logo entrenched in my favorite memories. \n\nThe guardians thing just gutted me with all the virtue signaling bullshit so I was almost a fair weather fan after that. This Jose moment was a bridge back for a moment. ","created_at":1759430076,"id":"2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","kind":1,"pubkey":"9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","sig":"39a78bcc6e01e944e35b7084475c7a8d18b272f1a3abe735f7a0819b72fbcf598a8e36c6c3daf2ee150a986e5a6075c61913228c755f643a142a04968b2a6bf6","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","wss://nostr.mom","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","","mention"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:34:37.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Music to my ears, can’t wait to eat there!! Thanks ","created_at":1759430076,"id":"0c6f28c5275be2d2ba293b92ffcf3b472ab933d60325a546cd4243ce84c4f150","kind":1,"pubkey":"13b42c1bbc81aad1e28b3e87c8e1ac818444902dd5f6ff0582632114cf750fd6","sig":"07a59dd963a18c9bc65df3eb815855819c313a1458dfcb463f9990b88f0ffb315c468caf98423bee895f6aa1eaf64c8b5d988f47360a85230aeda7f77b4e8471","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["e","2fc49ef2fc00792b7daee2d2bc4f0d6c53de9cfa0f5a469d2c2e2a2e0ddeb7b8","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","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","","mention"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:34:38.031] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the hex pubkey of nostr:nprofile1qqs9pk20ctv9srrg9vr354p03v0rrgsqkpggh2u45va77zz4mu5p6ccpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgkwaehxw309a5xjum59ehx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz7qrxnfk","created_at":1759430075,"id":"cf9805ab0a6528d95a06dbe601f5dbb7910792c86aaa4692113f862d099637b8","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"995f2c9c755875e0e06881602baa18bac5a00f09a164e3f81b56e61bf36fd6ee352ce02c2b044fbd353a5e6c7879a2b96fe1142b5f736dc43f07d23bb9012a41","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["e","5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","wss://nostr.bitcoiner.social/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[14:34:38.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"In the UK, Keir Starmer made a point of saying ID cards would be compulsory so he can then say he has taken feedback on board & will now make them voluntary whilst consulting the public. Then, increasingly it'll be convenient not to use it & in parallel inconvenient to use cash & convenient to use CBDCs. By 2030, both will have critical mass... unless people are vigilant & energetic in their resistance. \n\n","created_at":1759430072,"id":"a616aacb518c309010d853ecf8efcd60306d3c0ff6c5e776b44ccde4d0be657e","kind":1,"pubkey":"d712474feafbab89fb9e6cd4ff01239e3b6a1a96991f45e564b2debf937a0191","sig":"e9483833c624ca1e2122b28593f4f229085814b9c12c4338a0eacfaff88e3cf7354c583361c74b9f5a318ec9d9e996a97b5f054c7a99c57cf00c02bfdf3f59ac","tags":[]}] +[14:34:38.117] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:38.178] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:38.239] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:38.299] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:38.360] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My new post. I'd like to know what other nostriches are producing goods. \n\n","created_at":1759430049,"id":"2e849b5a051b9171a86584fff9f3383a4c200a19b62644087f5abee4e923aa0e","kind":1,"pubkey":"9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766","sig":"5b256e8f308716438062397b4309450a078371c89652d718ad40a5565513ffabd82c2e6bd935d2bb8e17c021dc70dbe3e9b3356fe7efbfa8a157354e553de060","tags":[["p","63d699329db8e38569f2589b6a3aa7b0f231cec83a7789e29f0a396781bd7d72"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","9f83869cafcfe6d34e30d46044bc81dd240858b29a1f6bf12e44efc8c6d53766"],["p","16897bfab409ff12a768217e14d472dd5e8a2ae11cc0e3340bf2d6f67f5bac83"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://relay.primal.net"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc","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","ac7266a6b8567254838bec57d898a9fb9a11d79f4049900da9422db2d8983065","wss://relay.primal.net","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["e","671e5e56119153b7160c2b9020f1d7e30ae35eba7a6bfcb491ef3e200051e79d","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","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"]]}] +[14:34:38.420] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:38.481] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:38.541] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:38.602] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:38.662] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:38.723] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:38.783] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:38.844] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:38.877] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"Me on nerd sniping: Nothing stops this brain.\n","created_at":1759430044,"id":"c24c7f3678b9abc769f24b9ad0fa2afdc4d40f4b94acfed11b3ed79fc4b13e6b","kind":1,"pubkey":"3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","sig":"897b532ac0539faa7c08f0c5cd29a410ab3d5e22f4c0ba062366622fa2dd1eb7d83a60e136c29bf6432b9e94683e925faa5f2f30a9770f0e9e46c386dbe4d937","tags":[["alt","A short note: Me on nerd sniping: Nothing stops this brain.\n"]]}] +[14:34:38.877] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:38.938] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:38.999] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:39.059] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:39.422] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:34:39.663] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:34:40.690] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:34:41.173] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:34:41.415] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:34:41.898] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:34:42.140] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:34:42.562] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:34:43.106] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:34:43.373] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:34:44.223] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:44.223] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:44.223] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:44.223] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:44.374] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Wine hole 😂","created_at":1759430077,"id":"ef693d0ad79bf411f9d90d9fd1f19f4e531766d461e19f634dfc48737e40a93b","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"68ec8a06ad63e12c2e06e96eff2b4e48efbb1a7a64730315a288187f8b1fc7370280c726d76a21958bc95ce55d130dc02be3c6fe911e72526fee4beb233e778c","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","a8b83c760779d8e796bf63c590c188ad9ca2c5b39802377b6ca4207008ba4435","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:34:44.435] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Great day, as the enemy is revealing itself as domestic as well as foreign. https://x.com/i/status/1973449793327550819","created_at":1759430076,"id":"c10f69b808e398153ce4616b432258cb40a6204821ffd6182e66acec3227ec5f","kind":1,"pubkey":"519d2fb3c354f44f5d4c7cdfc532633daf029bcc7d54beb0cb0f770646f8350f","sig":"8ad37f9f8bc2722a728e367767725a8d47a63e826f3bd323cf38b34d9a86f53b4200920a7e52b404dd30bc36a1e520ef9d7dca3be91f36a446c8d05347f76bb3","tags":[["r","https://x.com/i/status/1973449793327550819"]]}] +[14:34:44.495] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I grew up calling them “the tribe.” Every memory with my grandparents listening on a radio had that name and logo entrenched in my favorite memories. \n\nThe guardians thing just gutted me with all the virtue signaling bullshit so I was almost a fair weather fan after that. This Jose moment was a bridge back for a moment. ","created_at":1759430076,"id":"2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","kind":1,"pubkey":"9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","sig":"39a78bcc6e01e944e35b7084475c7a8d18b272f1a3abe735f7a0819b72fbcf598a8e36c6c3daf2ee150a986e5a6075c61913228c755f643a142a04968b2a6bf6","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","wss://nostr.mom","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","","mention"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:34:44.556] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Music to my ears, can’t wait to eat there!! Thanks ","created_at":1759430076,"id":"0c6f28c5275be2d2ba293b92ffcf3b472ab933d60325a546cd4243ce84c4f150","kind":1,"pubkey":"13b42c1bbc81aad1e28b3e87c8e1ac818444902dd5f6ff0582632114cf750fd6","sig":"07a59dd963a18c9bc65df3eb815855819c313a1458dfcb463f9990b88f0ffb315c468caf98423bee895f6aa1eaf64c8b5d988f47360a85230aeda7f77b4e8471","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["e","2fc49ef2fc00792b7daee2d2bc4f0d6c53de9cfa0f5a469d2c2e2a2e0ddeb7b8","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","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","","mention"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:34:44.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the hex pubkey of nostr:nprofile1qqs9pk20ctv9srrg9vr354p03v0rrgsqkpggh2u45va77zz4mu5p6ccpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgkwaehxw309a5xjum59ehx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz7qrxnfk","created_at":1759430075,"id":"cf9805ab0a6528d95a06dbe601f5dbb7910792c86aaa4692113f862d099637b8","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"995f2c9c755875e0e06881602baa18bac5a00f09a164e3f81b56e61bf36fd6ee352ce02c2b044fbd353a5e6c7879a2b96fe1142b5f736dc43f07d23bb9012a41","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["e","5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","wss://nostr.bitcoiner.social/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[14:34:44.677] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"In the UK, Keir Starmer made a point of saying ID cards would be compulsory so he can then say he has taken feedback on board & will now make them voluntary whilst consulting the public. Then, increasingly it'll be convenient not to use it & in parallel inconvenient to use cash & convenient to use CBDCs. By 2030, both will have critical mass... unless people are vigilant & energetic in their resistance. \n\n","created_at":1759430072,"id":"a616aacb518c309010d853ecf8efcd60306d3c0ff6c5e776b44ccde4d0be657e","kind":1,"pubkey":"d712474feafbab89fb9e6cd4ff01239e3b6a1a96991f45e564b2debf937a0191","sig":"e9483833c624ca1e2122b28593f4f229085814b9c12c4338a0eacfaff88e3cf7354c583361c74b9f5a318ec9d9e996a97b5f054c7a99c57cf00c02bfdf3f59ac","tags":[]}] +[14:34:44.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That was a gorgeous phone. \n\n","created_at":1759430061,"id":"4a89643b176642af2291602088698f3bda6833bf4ca94be7c040b5b82abf9cd3","kind":1,"pubkey":"b7cfd472ff903441ec6cd55bb506f9744211a6e68e52525d42445169bda03f5a","sig":"b631939c992bfba950c99f0d195d60e6e20f51a77afce1e8c795bc6d2aac586d324bf61aa2a0b14505c5d2aeeec56f022ca34261a6c3dbd1b616df8466647776","tags":[["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"],["p","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a","wss://relay.primal.net"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","wss://a.nos.lol"],["e","d0e6e1cdf5c0ecd4d1a321a9071b6e1b98aa8053cc11243371c784e0af2b8263","wss://relay.primal.net","reply","1023ed59a2b320d5bc3528b3b1d1f4c2f73862b13c514788bbfd00a1dbd5ed2a"],["e","172a7ba2080a33f61ba84155ddfe303c71ebfd39c93423b7556abb34e6d24eca","wss://a.nos.lol","root","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24"]]}] +[14:34:44.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"suggestion taken!","created_at":1759430059,"id":"d47cd5530f81c0344978931845dc5b38a48e31e70a851ad415d41cc2fde1a8cc","kind":1,"pubkey":"f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","sig":"e03207df8c089594c453f7e28d56bfe681ffa9217fddea1ef739428ae8646a01acb06a0dba41238e0362d690163cfd0d68bf0773a491578cc7ac99c607a2c554","tags":[["alt","A short note: suggestion taken!"],["e","dae37e3e2a01fe16404fe782f7f01658643329d017f172522da65255864355c9","wss://relay.primal.net/","root","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2"],["e","fd6c218e65d1d99c7868ce1413b7791a9728ff8a4f0431040fdf1f6bf1753e5f","wss://relay.nostr.band/","reply","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9"],["p","f683e87035f7ad4f44e0b98cfbd9537e16455a92cd38cefc4cb31db7557f5ef2","wss://relay.primal.net/"],["p","592295cf2b09a7f9555f43adb734cbee8a84ee892ed3f9336e6a09b6413a0db9","wss://nostr.mom/"]]}] +[14:34:44.859] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Bro should do that shit in privacy 🤣","created_at":1759430052,"id":"a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"b4f70a1fa45dc4daa7cef85864607ab73ca00bcad088a8f64d7100ace73a0c49f0fc0bf4ce53e2073cc10aad9659db98231aef00d688543e8b808e965564f8d8","tags":[["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","","reply"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1"]]}] +[14:34:44.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy summarize this article","created_at":1759430050,"id":"5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"51d77c2f3a95295dd684ed739b85228d68a19504ac2e952fe8431a624bc819693f5cb7dc47f0b57ed23e4a1e2a0faea1bc937453b28894831ad9476bd67908d0","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"]]}] +[14:34:44.980] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:45.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:45.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast\\n\\nDoomAI: markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\",\"name\":\"DoomAI Terminal Bunker\"}","created_at":1759430045,"id":"66daa27f8b383352ef98fed90f3f63cc2dc0a00ebeafe6de2b9203cd6fcf1d30","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"610f144f5eef224971dd5a609b2c2fbd1e427285664f63ef0c41a6757cf2c9b550d49651e330c705974ef12ef76561e434c6088d348bbbbb291f91d8b5aa3e4f","tags":[]}] +[14:34:45.162] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:45.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:45.283] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:45.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:45.404] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:45.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:45.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:45.586] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:45.646] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:46.009] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:34:46.251] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:34:47.278] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:34:47.761] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:34:48.003] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:34:48.452] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:34:48.693] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:34:49.116] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:34:49.660] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:34:49.962] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:34:50.022] RECV relay.laantungir.net:443: ["EVENT","pool_4_1759428813",{"content":"","created_at":1759430085,"id":"fdb97dfc24d0dc9568c439dda20ebd98df05a8701c0afb630d1187a88f642810","kind":10002,"pubkey":"34324c3cc822dbc7edbcef918a55e3c905fe14f3f0f0cf8bc18db1a59bfde092","sig":"b28ab3243bbbdf3faab405c1abb2c17930be2344f376496138ffad687206c63d1af6dd55bbf86a88afea36f2cb62c6b996d6e7684df803ef9801d7a380994937","tags":[["alt","Relay list to discover the user's content"],["r","wss://nostr.wine/"],["r","wss://relay.nostr.band/"],["r","wss://nostr.mom/"],["r","wss://nostr.lol/"],["r","wss://relay.nostr.hu/"],["r","wss://relay.nostr.bg/"],["r","wss://relay.0xchat.com/","write"]]}] +[14:34:50.816] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:50.816] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:50.817] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:50.817] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:50.976] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Damn brother I’m sorry. It’s tough right now, I feel it as well. A daily ongoing hustle","created_at":1759430090,"id":"1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6cb9c40e870c839e06c2a73e5297c9ba674c76d3ad5bee515c61e8601a39e02bc844aebf19f81d865cfa2d58458b7d52973e0df9fa2af881465ae297598f9038","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"]]}] +[14:34:51.037] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get well! \n\n","created_at":1759430087,"id":"194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","kind":1,"pubkey":"7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","sig":"c7e6097efad98ce0189b080667b4868bef26c95549cb93d5057f2df78086fadb8654dfd2bf14f6102f5f7233b273ed08bc3a58689e318178df9761e15fb2c769","tags":[["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://nos.lol"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"]]}] +[14:34:51.098] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsr9cvzwc652r4m83d86ykplrnm9dg5gwdvzzn8ameanlvut35wy3gpz3mhxw309aex2mrp0yhx5c34x5hxxmmd9uqsuamnwvaz7tmwdaejumr0dshszythwden5te0dehhxarj9ekxzmny9u0ljp2l when does damos going to have follow packs? ","created_at":1759430085,"id":"2d9b64e1afe4fe7e023deee8626c622d125837ac64eed192a044379521f072c8","kind":1,"pubkey":"6fb266012c3008303e54ae55140b46957e9978098401dda34f4d921a275bf8bb","sig":"75e79ec3a867d92ae939f46ac08d94158015702865b98d29a8bb338d4706adbeec2e7dc8ca31b6b46d8e352ef1e77ff66daa07b21553fd0c880f6f49d2837319","tags":[["alt","A short note: nostr:nprofile1qqsr9cvzwc652r4m83d86ykplrnm9dg5gwd..."],["p","32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","ws://relay.jb55.com/"],["p","32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","ws://relay.jb55.com/"]]}] +[14:34:51.159] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:34 @ 917,405","created_at":1759430084,"id":"dd23f76be4645c30c3ad11836dbbbaa97614bb9db3855a2e878c17cd087e6cfb","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"8c5ec78631d49eb733ab441e2b8616d14968742635356824a084cb78870efb4816865ad06e84cbd057692c3bcb99330ea917aa1663a80de1ae8a060f64cf40de","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:34:51.220] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Wine hole 😂","created_at":1759430077,"id":"ef693d0ad79bf411f9d90d9fd1f19f4e531766d461e19f634dfc48737e40a93b","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"68ec8a06ad63e12c2e06e96eff2b4e48efbb1a7a64730315a288187f8b1fc7370280c726d76a21958bc95ce55d130dc02be3c6fe911e72526fee4beb233e778c","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","a8b83c760779d8e796bf63c590c188ad9ca2c5b39802377b6ca4207008ba4435","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:34:51.280] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Great day, as the enemy is revealing itself as domestic as well as foreign. https://x.com/i/status/1973449793327550819","created_at":1759430076,"id":"c10f69b808e398153ce4616b432258cb40a6204821ffd6182e66acec3227ec5f","kind":1,"pubkey":"519d2fb3c354f44f5d4c7cdfc532633daf029bcc7d54beb0cb0f770646f8350f","sig":"8ad37f9f8bc2722a728e367767725a8d47a63e826f3bd323cf38b34d9a86f53b4200920a7e52b404dd30bc36a1e520ef9d7dca3be91f36a446c8d05347f76bb3","tags":[["r","https://x.com/i/status/1973449793327550819"]]}] +[14:34:51.341] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I grew up calling them “the tribe.” Every memory with my grandparents listening on a radio had that name and logo entrenched in my favorite memories. \n\nThe guardians thing just gutted me with all the virtue signaling bullshit so I was almost a fair weather fan after that. This Jose moment was a bridge back for a moment. ","created_at":1759430076,"id":"2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","kind":1,"pubkey":"9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","sig":"39a78bcc6e01e944e35b7084475c7a8d18b272f1a3abe735f7a0819b72fbcf598a8e36c6c3daf2ee150a986e5a6075c61913228c755f643a142a04968b2a6bf6","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23","wss://nostr.mom","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af","","mention"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f","","mention"]]}] +[14:34:51.401] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Music to my ears, can’t wait to eat there!! Thanks ","created_at":1759430076,"id":"0c6f28c5275be2d2ba293b92ffcf3b472ab933d60325a546cd4243ce84c4f150","kind":1,"pubkey":"13b42c1bbc81aad1e28b3e87c8e1ac818444902dd5f6ff0582632114cf750fd6","sig":"07a59dd963a18c9bc65df3eb815855819c313a1458dfcb463f9990b88f0ffb315c468caf98423bee895f6aa1eaf64c8b5d988f47360a85230aeda7f77b4e8471","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["e","2fc49ef2fc00792b7daee2d2bc4f0d6c53de9cfa0f5a469d2c2e2a2e0ddeb7b8","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","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae","","mention"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:34:51.462] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wqpzamhxue69uhhyetvv9ujumn0wd68ytnzv9hxgtcq7ptsy what's the hex pubkey of nostr:nprofile1qqs9pk20ctv9srrg9vr354p03v0rrgsqkpggh2u45va77zz4mu5p6ccpzemhxue69uhk2er9dchxummnw3ezumrpdejz7qgkwaehxw309a5xjum59ehx7um5wghxcctwvshszrnhwden5te0dehhxtnvdakz7qrxnfk","created_at":1759430075,"id":"cf9805ab0a6528d95a06dbe601f5dbb7910792c86aaa4692113f862d099637b8","kind":1,"pubkey":"50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","sig":"995f2c9c755875e0e06881602baa18bac5a00f09a164e3f81b56e61bf36fd6ee352ce02c2b044fbd353a5e6c7879a2b96fe1142b5f736dc43f07d23bb9012a41","tags":[["alt","A short note: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v..."],["e","40e9be66e68ad630faff997f819a031058718f1e2daa56d9b01179ce43f9f151","wss://bots.utxo.one/","root","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4"],["e","5eb5f32039f0fbee0e37b0071434c518d7ecdf7b063d24567f3cb1b684d6b6b0","wss://nostr.bitcoiner.social/","reply","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","9c5d0df5f599f957fa2b0d29ce7c36fb2dd0516cbeb5bc9bc4a41747418ffcb4","wss://news.utxo.one/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8","wss://relay.nostr.band/"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63","wss://eden.nostr.land/"]]}] +[14:34:51.522] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"In the UK, Keir Starmer made a point of saying ID cards would be compulsory so he can then say he has taken feedback on board & will now make them voluntary whilst consulting the public. Then, increasingly it'll be convenient not to use it & in parallel inconvenient to use cash & convenient to use CBDCs. By 2030, both will have critical mass... unless people are vigilant & energetic in their resistance. \n\n","created_at":1759430072,"id":"a616aacb518c309010d853ecf8efcd60306d3c0ff6c5e776b44ccde4d0be657e","kind":1,"pubkey":"d712474feafbab89fb9e6cd4ff01239e3b6a1a96991f45e564b2debf937a0191","sig":"e9483833c624ca1e2122b28593f4f229085814b9c12c4338a0eacfaff88e3cf7354c583361c74b9f5a318ec9d9e996a97b5f054c7a99c57cf00c02bfdf3f59ac","tags":[]}] +[14:34:51.583] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:51.643] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:34:51.704] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:51.765] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:51.825] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:51.886] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:51.946] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:52.007] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:52.067] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:52.128] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:52.188] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:52.249] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:52.611] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:34:52.853] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:34:53.845] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:34:54.329] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:34:54.571] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:34:55.054] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:34:55.296] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:34:55.719] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:34:56.262] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:34:56.564] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:34:57.421] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:34:57.421] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:34:57.421] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:34:57.421] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:34:57.573] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:34:57.634] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:34:57.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That's one of the reasons Powell continues to say labor market is strong and solid.. lol. \n\n","created_at":1759430094,"id":"87b7abf41636d602d7c45a029acd85dd7bb2e9662079323b99d63253f79fd7ee","kind":1,"pubkey":"8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","sig":"fbdf4e365afe431d11255f31b651fd29e05759301a0ce4026e6adbc988d151c5640cd7115a44e04fa2f91d35dca8c059bc4414df8fe6798ba49c0ac0e34a244d","tags":[["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","wss://relay.primal.net"],["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"]]}] +[14:34:57.755] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We’re going to win. \nhttps://blossom.primal.net/cf4546fbe09644b85d2f0eea731b84c96ec84da6de723dc861ada83f754263d9.jpg","created_at":1759430093,"id":"a0169211a599866589e8b9b59d6789f3f333a33a943646399421bb88771f26f2","kind":1,"pubkey":"472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","sig":"458c797392bfffcd1126840290ae122a4e0f3f4d0690df00549405cf038fae48bb255aedcb42e4c64eb2dfe43af435153af00132746e8522dc97fc34d9af3d28","tags":[]}] +[14:34:57.816] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ねれん","created_at":1759430092,"id":"c90503b1aeade57f2f4ab49f49ffc22d50c345b4c1b87b65d24ea8e43bf0efb2","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"32e7d28b32c9e3e1ca15ec9fda992e4ff7fca67dff486bb075427a1ff40a666f31c7cffa6ce6e50985c3447233d9d94858561f98daacc50c096af74e1955e1f7","tags":[]}] +[14:34:57.877] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Damn brother I’m sorry. It’s tough right now, I feel it as well. A daily ongoing hustle","created_at":1759430090,"id":"1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6cb9c40e870c839e06c2a73e5297c9ba674c76d3ad5bee515c61e8601a39e02bc844aebf19f81d865cfa2d58458b7d52973e0df9fa2af881465ae297598f9038","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"]]}] +[14:34:57.937] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Get well! \n\n","created_at":1759430087,"id":"194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","kind":1,"pubkey":"7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","sig":"c7e6097efad98ce0189b080667b4868bef26c95549cb93d5057f2df78086fadb8654dfd2bf14f6102f5f7233b273ed08bc3a58689e318178df9761e15fb2c769","tags":[["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://nos.lol"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"]]}] +[14:34:57.998] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsr9cvzwc652r4m83d86ykplrnm9dg5gwdvzzn8ameanlvut35wy3gpz3mhxw309aex2mrp0yhx5c34x5hxxmmd9uqsuamnwvaz7tmwdaejumr0dshszythwden5te0dehhxarj9ekxzmny9u0ljp2l when does damos going to have follow packs? ","created_at":1759430085,"id":"2d9b64e1afe4fe7e023deee8626c622d125837ac64eed192a044379521f072c8","kind":1,"pubkey":"6fb266012c3008303e54ae55140b46957e9978098401dda34f4d921a275bf8bb","sig":"75e79ec3a867d92ae939f46ac08d94158015702865b98d29a8bb338d4706adbeec2e7dc8ca31b6b46d8e352ef1e77ff66daa07b21553fd0c880f6f49d2837319","tags":[["alt","A short note: nostr:nprofile1qqsr9cvzwc652r4m83d86ykplrnm9dg5gwd..."],["p","32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","ws://relay.jb55.com/"],["p","32e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245","ws://relay.jb55.com/"]]}] +[14:34:58.059] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"08:34 @ 917,405","created_at":1759430084,"id":"dd23f76be4645c30c3ad11836dbbbaa97614bb9db3855a2e878c17cd087e6cfb","kind":1,"pubkey":"7c5f24e1c95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee","sig":"8c5ec78631d49eb733ab441e2b8616d14968742635356824a084cb78870efb4816865ad06e84cbd057692c3bcb99330ea917aa1663a80de1ae8a060f64cf40de","tags":[["t","bitcoin"],["t","moscowtime"],["t","nostr"]]}] +[14:34:58.084] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Wine hole 😂","created_at":1759430077,"id":"ef693d0ad79bf411f9d90d9fd1f19f4e531766d461e19f634dfc48737e40a93b","kind":1,"pubkey":"18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","sig":"68ec8a06ad63e12c2e06e96eff2b4e48efbb1a7a64730315a288187f8b1fc7370280c726d76a21958bc95ce55d130dc02be3c6fe911e72526fee4beb233e778c","tags":[["e","02896b8e55905d2caee569304ba69a50274201ea53eb6cc2b3518ecd6cdbdbc1","wss://nostr.wine/","root"],["e","a8b83c760779d8e796bf63c590c188ad9ca2c5b39802377b6ca4207008ba4435","","reply"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","0ee827a36e8bb0cfc483cf1872781182c4a16c58acba3ae2d7b155e0370e93b8"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","04c960497af618ae18f5147b3e5c309ef3d8a6251768a1c0820e02c93768cc3b"]]}] +[14:34:58.144] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:34:58.205] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:34:58.265] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:34:58.326] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:34:58.386] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:34:58.447] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:58.507] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:34:58.568] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:34:58.629] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:34:58.689] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:58.750] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:34:58.810] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:34:59.173] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:34:59.414] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:00.441] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:00.925] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:01.166] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:01.650] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:01.891] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:02.314] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:02.857] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:03.125] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:04.599] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:04.599] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:04.599] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:04.599] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:04.821] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:04.882] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:04.942] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:05.003] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:05.064] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:05.125] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:05.185] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:05.246] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:05.308] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That's one of the reasons Powell continues to say labor market is strong and solid.. lol. \n\n","created_at":1759430094,"id":"87b7abf41636d602d7c45a029acd85dd7bb2e9662079323b99d63253f79fd7ee","kind":1,"pubkey":"8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","sig":"fbdf4e365afe431d11255f31b651fd29e05759301a0ce4026e6adbc988d151c5640cd7115a44e04fa2f91d35dca8c059bc4414df8fe6798ba49c0ac0e34a244d","tags":[["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","wss://relay.primal.net"],["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"]]}] +[14:35:05.368] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We’re going to win. \nhttps://blossom.primal.net/cf4546fbe09644b85d2f0eea731b84c96ec84da6de723dc861ada83f754263d9.jpg","created_at":1759430093,"id":"a0169211a599866589e8b9b59d6789f3f333a33a943646399421bb88771f26f2","kind":1,"pubkey":"472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","sig":"458c797392bfffcd1126840290ae122a4e0f3f4d0690df00549405cf038fae48bb255aedcb42e4c64eb2dfe43af435153af00132746e8522dc97fc34d9af3d28","tags":[]}] +[14:35:05.428] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:05.489] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:05.549] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:05.610] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:05.671] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:05.731] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:05.792] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:05.852] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:05.913] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:05.973] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:06.034] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:06.094] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:06.457] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:06.699] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:07.725] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:08.173] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:08.415] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:08.898] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:09.140] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:09.563] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:10.106] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:10.408] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:11.257] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:11.257] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:11.257] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:11.257] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:11.407] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:11.468] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:11.528] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:11.589] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:11.649] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:11.710] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:11.770] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:11.831] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:11.891] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That's one of the reasons Powell continues to say labor market is strong and solid.. lol. \n\n","created_at":1759430094,"id":"87b7abf41636d602d7c45a029acd85dd7bb2e9662079323b99d63253f79fd7ee","kind":1,"pubkey":"8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","sig":"fbdf4e365afe431d11255f31b651fd29e05759301a0ce4026e6adbc988d151c5640cd7115a44e04fa2f91d35dca8c059bc4414df8fe6798ba49c0ac0e34a244d","tags":[["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","wss://relay.primal.net"],["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"]]}] +[14:35:11.952] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"We’re going to win. \nhttps://blossom.primal.net/cf4546fbe09644b85d2f0eea731b84c96ec84da6de723dc861ada83f754263d9.jpg","created_at":1759430093,"id":"a0169211a599866589e8b9b59d6789f3f333a33a943646399421bb88771f26f2","kind":1,"pubkey":"472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e","sig":"458c797392bfffcd1126840290ae122a4e0f3f4d0690df00549405cf038fae48bb255aedcb42e4c64eb2dfe43af435153af00132746e8522dc97fc34d9af3d28","tags":[]}] +[14:35:12.012] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:12.073] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:12.133] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:12.194] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:12.254] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:12.315] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:12.375] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:12.436] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:12.496] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:12.557] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:12.617] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759429998,"id":"ec780b873bfe7c1cd0da1ad3e0456b60b1b6f168a0eab15fc37e660af79f48c4","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"453ea92cf3e1d5ac18ae2c7cf13b4edea965adc7c97e494b632655b0884900a8e915eacfc00213c8e2b2d011347fde8624d7a085a4ab6a73891e48407bd84b21","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:12.678] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:13.040] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:13.247] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:14.274] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:14.757] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:14.999] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:15.482] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:15.724] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:16.147] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:16.690] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:16.992] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:18.042] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:18.043] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:18.043] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:18.043] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:18.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:18.207] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:18.268] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:18.329] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:18.389] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:18.450] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:18.510] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:18.571] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:18.631] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:18.692] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"That's one of the reasons Powell continues to say labor market is strong and solid.. lol. \n\n","created_at":1759430094,"id":"87b7abf41636d602d7c45a029acd85dd7bb2e9662079323b99d63253f79fd7ee","kind":1,"pubkey":"8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","sig":"fbdf4e365afe431d11255f31b651fd29e05759301a0ce4026e6adbc988d151c5640cd7115a44e04fa2f91d35dca8c059bc4414df8fe6798ba49c0ac0e34a244d","tags":[["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","wss://relay.primal.net"],["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672"]]}] +[14:35:18.752] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:18.813] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:18.874] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:18.934] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:18.995] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:19.055] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:19.116] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:19.176] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:19.237] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:19.297] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:19.358] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Zak :1password:\",\"about\":\"Privacy Engineer at @1password. Previously Jolicloud. I live at Disney World. Opinions are mine, you can’t have them.\",\"picture\":\"https://media.infosec.exchange/infosec.exchange/accounts/avatars/109/322/103/600/468/856/original/f378a938a1f9ddf0.jpeg\",\"banner\":\"https://media.infosec.exchange/infosec.exchange/accounts/headers/109/322/103/600/468/856/original/4fd508b4040c4465.jpg\",\"nip05\":\"zak@infosec-exchange.mostr.pub\",\"fields\":[[\"LinkStack\",\"https://linksta.cc/@zak\"]]}","created_at":1759429999,"id":"fdae3731cc24354016e60d23e1a71e276801da3773b8f6f55e7c7344c9bc7891","kind":0,"pubkey":"e74d2e921c203a069952f61e870bd9ba0670be28e07b651ad4c05d6a1dc5841e","sig":"8c5eeb024517f977fa595e56d6ab3a12301eaa52283e42a454349f92b57c133b34c38690205ab5472e366aa83820150f48e3db60641692b331530c3ba31be2ea","tags":[["emoji","1password","https://media.infosec.exchange/infosec.exchange/custom_emojis/images/000/168/006/original/16a22fd92124aef2.png"],["proxy","https://infosec.exchange/users/zak","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:19.419] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:19.781] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:20.023] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:21.050] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:21.533] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:21.774] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:22.257] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:22.498] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:22.921] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:23.431] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:23.732] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:24.586] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:24.586] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:24.586] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:24.586] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:24.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:24.798] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:24.858] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:24.919] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:24.979] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:25.040] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:25.101] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:25.161] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:25.222] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:25.282] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:25.343] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:25.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:25.464] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:25.525] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:25.585] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:25.646] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:25.706] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:25.767] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:25.827] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:25.888] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:25.949] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:26.009] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:26.372] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:26.614] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:27.641] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:28.089] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:28.331] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:28.814] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:29.055] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:29.478] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:30.023] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:30.325] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:31.177] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:31.177] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:31.177] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:31.177] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:31.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:31.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:31.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:31.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:31.722] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:31.783] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:31.844] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:31.904] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"robo","created_at":1759430098,"id":"84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"3221224f8bdb9c1c30f7b2868df5c04f8bf9d020f48995c918e2cc765f69ef402fa08cca08e1aa22c4b15a2e9609720728dad04bae7cf671b2c9a0bbe4594586","tags":[]}] +[14:35:31.965] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Starmer looking…","created_at":1759430096,"id":"34b553b514935ebaa6c0eaf3e4dc8d639dd37e31b7b8eb9fd5f83b3f5eabd212","kind":1,"pubkey":"7b062a24134fbabfd9a8cde218c9ad7290f9511d7908beae51db3cda39f2db6d","sig":"db6dc5614744f890707dc9b4e3600250865d5b415aee6c0e5af0e7c33f0b8583c3e99135cc55a3472b283ce2ac5a1588f974676f4d3f7d118e7dde7a878a0df7","tags":[["e","552c616f91dc91a0d021e089f0ea296e7fa14ccfb036c7f2997335ddee29538b","wss://relay.primal.net","root"],["p","85bdb5875e113dcc99498b474636449882ee15a1c78154ab07c065b47339d672","","mention"]]}] +[14:35:32.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:32.086] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:32.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:32.207] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:32.268] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:32.328] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:32.389] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:32.449] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:32.510] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:32.570] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:32.631] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:32.691] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:32.752] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:33.079] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:33.321] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:33.815] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"Things I'm considering adding to Bloom to scratch my own itches:\n\n1. Document annotations with some collaboration aspect\n2. Start stream right from a stored video\n3. Paywalled links to files\n4. Companion app to upload files from a folder on your local machine right to a Blossom server\n\nhttps://github.com/letdown2491/bloom","created_at":1759430095,"id":"d9f298556990544c1dfb9defaac1963721d65097126045b01ed7280fde8d04ac","kind":1,"pubkey":"daa41bedb68591363bf4407f687cb9789cc543ed024bb77c22d2c84d88f54153","sig":"4ddff264a25a3b2daf6b18a5356e55c21a02e2a6d9b3d29382f31cb38f22b9ced4cb8df3312128f45bfc9dc8b2e7487f67699763f9bb11f1b59429ca218badcd","tags":[["alt","A short note: Things I'm considering adding to Bloom to scratch ..."],["r","https://github.com/letdown2491/bloom"]]}] +[14:35:34.297] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:34.780] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:35.022] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:35.455] RECV relay.laantungir.net:443: ["EVENT","pool_1_1759428493",{"content":"Block 917405\n\n3 - high priority\n3 - medium priority\n1 - low priority\n1 - no priority\n1 - purging\n\n#bitcoinfees #mempool","created_at":1759430124,"id":"1afdbead726eee9be4a61174d39b9f52d850b0e4b4194663d576ca4e5c8487c6","kind":1,"pubkey":"f03df3d4134230420cdf7acbb35f96a2542424246ab052ba24c6fec6a4d4f676","sig":"849a31cc5538fa901df77ef301ce689f9de2edac53a9bf74c4095287b0d8bf538d43cfc87d4fa497d0123bc6ee6bc0d469c4d413bcf746902cf54a6cba43fd85","tags":[]}] +[14:35:35.455] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:35.697] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:36.120] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:36.664] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:36.966] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:37.820] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:37.820] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:37.821] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:37.821] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:37.972] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:35:38.033] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:35:38.094] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:35:38.119] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:38.179] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:38.240] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:38.300] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:38.361] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:38.421] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:npub18ams6ewn5aj2n3wt2qawzglx9mr4nzksxhvrdc4gzrecw7n5tvjqctp424 ","created_at":1759430100,"id":"acbd5487611337fcff21deb693ff78f0f1f24d22b3627867f6205e2079874e68","kind":1,"pubkey":"96a578f6b504646de141ba90bec5651965aa01df0605928b3785a1372504e93d","sig":"e9d3412a9808b358886b49f4b8e73ecfcc4d1615c7ce2e6ba407be807ee596cc96f862dfc59af2ca437405801ea052838c6ede9a7985ff6c11da061591ae50db","tags":[["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","","mention"],["p","3f770d65d3a764a9c5cb503ae123e62ec7598ad035d836e2a810f3877a745b24","","mention"]]}] +[14:35:38.482] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"✄------------ 3:35 ------------✄","created_at":1759430100,"id":"d6dfda8fff6888d3d243f8f569b2ae0870bb989ec151e5c743125d4f376d15d8","kind":1,"pubkey":"3ce2b51dca8b67b69c0ccb7c6a226437f7dbcc44a32426e70e52c78336fc72c7","sig":"ba98d2a33767b9497d11f22a599d3d278f0dc33ba7b758e4a9d9b9903b8bb89e3da6f6b714cb928afa1ad3e938f23188ad13da060e1c2319246923243c96dcc1","tags":[]}] +[14:35:38.542] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:38.603] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:38.663] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:38.724] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:38.784] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:38.845] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:38.905] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:38.966] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:39.026] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:39.087] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:39.147] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:39.208] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:39.570] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:39.812] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:40.838] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:41.322] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:41.564] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:42.047] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:42.289] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:42.712] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:43.221] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:43.523] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:44.375] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:44.375] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:44.375] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:44.375] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:44.526] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:35:44.586] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:35:44.647] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:35:44.708] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:35:44.768] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:35:44.829] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:44.889] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:44.950] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:45.011] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Haha this is awesome. ","created_at":1759430101,"id":"fe62578b33cbd6d598f193110b04afc2a209c8360bab110d28e491b3971e74ab","kind":1,"pubkey":"45fd1955f590da87c1fd2edb99d17accf235ec3ebf0afe1d3306ade42693c6e9","sig":"c633db8dfb8db1e9c78783ec73b84ccfa61beaecbc57272cf5af9c8683627cae6e4aca730e4e1a8857cf5eca66b4937f9dd15e835070c1d1ab344e667240f6f0","tags":[["e","7f2508270ca33374fd2fbd6e912580fb23a8af45437012f3cba6ac21ef0c778b","wss://relay.primal.net","root"],["p","0b77a4d6cc1fa1914944fc85e3055c790d7988d98dd6266ab08cde12cb11fdb7","","mention"]]}] +[14:35:45.071] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"My sentiment is I’ll maybe update my node in 6 years ","created_at":1759430100,"id":"877401c32044ba67f7b3d8604136a49939f6290814069d289b32d0ddcf42f8cb","kind":1,"pubkey":"d3a15a0f5100f99efdccc68bea963383450558b1bb8b23b70a6bfa94cbb685b8","sig":"78a2944ae944d559bc9db548daf4189722878b9660962aa2d433d8e211b13bd84beb0cc07efaece89ea770c55c0d0a0b6f5735f995cb9bda1ac4d1ffb0366c4d","tags":[["e","6a19f7de3b637da709c3f1383d110aac2bf6ac382625863cb4f914fdd296e58a","wss://relay.snort.social/relay.snort.social","root"],["p","c49d52a573366792b9a6e4851587c28042fb24fa5625c6d67b8c95c8751aca15","","mention"]]}] +[14:35:45.132] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:45.193] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:45.253] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:45.314] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:45.374] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:45.435] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:45.495] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:45.556] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:45.617] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:45.677] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:45.738] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_997feb4c\",\"display_name\":\"anon_997feb4c\",\"about\":\"Lightning Lottery user: anon_997feb4c\"}","created_at":1759430007,"id":"9ae7eb2fe20b1f974413b3e3e7f963360d2fb48e7a3bc329d12bfd0432b5a077","kind":0,"pubkey":"997feb4ceea3af8a5dea69cb312f8dea6bdb0f3a16469b384bb85d1690ce4c5f","sig":"2e85c0f98ff414577702e725b99d70885a603f54c8e403a34bbe4b509ce8ce0302943e7da9b6e8e2b0eb4a92c32591ba121f58f2597708c181bccbbf9d34f528","tags":[]}] +[14:35:45.798] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:46.161] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:46.403] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:47.430] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:47.914] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:48.121] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:48.604] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:48.845] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:49.268] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:49.812] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:50.115] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:50.970] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:50.970] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:50.970] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:50.970] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:51.192] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:35:51.252] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:35:51.313] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:35:51.373] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:35:51.434] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:35:51.494] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:35:51.555] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:35:51.616] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:51.676] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:51.737] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:51.798] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:51.858] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:51.919] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:51.980] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:52.040] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\">DOOMAI TERMINAL\\nBunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430089,"id":"1e1dd341c8971ec9f50093c8dd8d095b5024788667e2cc9359183de041f7f989","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"71b083b2f9d542c5a56a8af4924fdda189d6d55150e644722300ab70e5068f40edd885f3d904145a5dcf4dcaa2a321b7d6eeb25c1130669161187a05b9385822","tags":[]}] +[14:35:52.101] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:52.161] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:52.222] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:52.282] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:52.343] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:52.403] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_6243c122\",\"display_name\":\"anon_6243c122\",\"about\":\"Lightning Lottery user: anon_6243c122\"}","created_at":1759430011,"id":"b380c77ce23823fa6ebfdee2ace1300a115e30738bf038cfcd991c9a8f46a58b","kind":0,"pubkey":"6243c122353167945274d9ae53f1a045f9060e820e458886da8fa88759ad2edb","sig":"0424485307809968efd0533c61ff04c437ee2b2ab5c93fafd5d5e8d8ec1a2a3184316f82cd616bdeac1d9ab8866a58921ce5621c88284d2a11998265b667fd84","tags":[]}] +[14:35:52.464] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:52.827] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:53.069] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:35:54.060] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:35:54.544] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:35:54.786] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:35:55.269] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:35:55.511] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:35:55.934] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:35:56.478] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:35:56.780] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:35:57.634] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:35:57.635] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:35:57.635] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:35:57.635] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:35:57.786] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:35:57.847] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:35:57.907] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:35:57.968] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:35:58.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:35:58.089] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:35:58.115] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:35:58.175] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:35:58.236] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Their little faces are so sweet 🦇","created_at":1759430114,"id":"c3cbe410f331db1f343d8d7b6c9a4d72c5db19fcba81706462d6c164624e2b50","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"2029890a891ec8138fff1125e3d4929ed0a3ae76628e90a039c8faed42d778843a25dc2ae2d67d6767ed0737a58952e72db006cd4191ccac43ebeadd93392db9","tags":[["alt","A short note: Their little faces are so sweet 🦇"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","22a4d6bec023f484e7e4825853b6b4eeda0aee1af68ce73117dcaec4ca956a12","wss://relay.nostr.band/","reply","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","288e79dca68e41921351d1b9b5aa208d9749abfd25f4b6dd93fe3a9c9f24caf7","wss://relay.primal.net/"]]}] +[14:35:58.296] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"ああ久々に334だ","created_at":1759430102,"id":"e5e3da6fa3fb5af387f89f5848556e4f2395441fba2f4f6d24dec76b01bb518d","kind":1,"pubkey":"e62f27d2814a25171c466d2d7612ad1a066db1362b4e259db5c076f9e6b21cb7","sig":"2711de3fe8642b3fd86d8cd5d99a26ef9d44b3bee70d71959b53f92a44d35933952ab85315944e80a72c13b10e36089b98322063e83e116433fd149ee53fc503","tags":[]}] +[14:35:58.357] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:35:58.418] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:35:58.478] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.539] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.599] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.660] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.721] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:35:58.781] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:35:58.842] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:35:58.902] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"LindyMan\",\"about\":\"Lindy Newsletter: lindynewsletter.beehiiv.com\\n\\n@lindyeffect\\n\\n(mirror of @PaulSkallas@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/8ef7b7278b763245dd27f8d874b8b33767e2b2635375d2c15e151d7a5517920d.png\",\"banner\":\"https://hell.twtr.plus/media/4a1a2434d5217de1241cb0822974f6eab429555fafda7bd27cef604166debd64.png\",\"nip05\":\"PaulSkallas@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430015,"id":"daf9a7df5f2378dafc372e31081ef5c3e4aac15df4d26ad686dedd0022a6dfe8","kind":0,"pubkey":"6a327f0e001df73bd679ca777ea4458f8b41b4ec6937476037af41484c940dee","sig":"dfc240ed4b07cd63e0ad50be13975775e630c484cb699127184a27099bea8d4a5fc36ffb64144ddb99c0f320465087c6c68ce26d9e20e891f1e60d2b3be51c70","tags":[["proxy","https://hell.twtr.plus/users/PaulSkallas","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:35:58.963] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"anon_5262bb7e\",\"display_name\":\"anon_5262bb7e\",\"about\":\"Lightning Lottery user: anon_5262bb7e\"}","created_at":1759430014,"id":"7037b1e6a78d96e41ac580d4964b3d1e2259288177e2fea3bd40e3edc56cc3a0","kind":0,"pubkey":"5262bb7e06a27f2cf7bbf293dbcc19745e4bf28ef7daef9b256a74455a669288","sig":"7bb225d676df0e1c4d79625d03ef8661efe5e904f3663d64f0f0c3a44d8eb83be9269a3ab1380b324ff9da9d55dc3c470efe4a5d40d6f0ead568e328370af7a7","tags":[]}] +[14:35:59.023] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:35:59.386] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:35:59.628] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:00.654] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:01.137] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:01.379] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:01.862] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:02.104] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:02.526] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:03.070] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:03.336] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:04.191] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:04.191] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:04.191] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:04.191] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:04.342] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:04.403] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:04.464] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:04.524] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:04.585] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:04.645] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:04.706] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:04.766] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:04.827] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:04.887] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:36:04.948] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:05.008] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.069] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.130] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:05.190] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.251] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.312] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.372] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:05.433] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:36:05.493] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:36:05.554] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:36:05.614] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:05.976] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:06.218] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:07.244] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:07.727] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:07.968] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:08.417] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:08.658] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:09.081] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:09.624] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:09.925] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:10.967] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:10.967] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:10.967] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:10.967] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:11.118] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:11.178] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:11.239] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:11.299] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:11.359] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:11.420] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:11.480] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:11.541] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:11.601] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:11.662] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"well theyre probably ALSO afraid of being wrong","created_at":1759430121,"id":"030bbf27c836fb19562150349214f5cb1edb44672239dd1ef43393bb9baac75b","kind":1,"pubkey":"f985d309197c805e1719c73185b574fc3ee407d7c1b6157dee99c6ace2599bbb","sig":"13007b83507a4ee0863bbc25d25d2eaa7977f6d5f60c08abc5b7046bba8183e45b660c2518dd3c15f021869ea5d70ffd3dc7848f11bc7146d1b20fd40e4ec99f","tags":[["e","fb9a38407be6b63b95dd3cebcb449916643b539966531259add93553b23a7dd8","wss://nostr.wine","reply","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"],["p","e0f5bf49899b84f18d58b8f510f352a26a23793b2d783aca6f780b3a99eff5a9"]]}] +[14:36:11.722] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:11.783] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:11.843] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:11.904] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:11.964] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:12.025] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:12.085] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:12.146] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:12.206] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:36:12.267] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:36:12.327] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"username\":\"wildrosie\",\"display_name\":\"Free West Reality Company 🇨🇦🇺🇸\",\"displayName\":\"Free West Reality Company 🇨🇦🇺🇸\",\"picture\":\"https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg\",\"banner\":\"https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg\",\"about\":\"#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist\",\"lud16\":\"grainybar92@walletofsatoshi.com\"}","created_at":1759430029,"id":"53d7ae58295ee13bd937e9533c47f2aa16b347b1bfa0ce29a8829590e96a02c4","kind":0,"pubkey":"5e42c153f1f2454c4e2ca7d1c9cd256d621ffc1911e302d811cb0a4609a27102","sig":"14a5557b317449ce3caed2cb627d145edda2302bf09da0b47fd2634e485fc1aad3b5dbad13d3402849fda39e830e19e896da7ff7e5d64565fb46364a0f59b059","tags":[["alt","User profile for Free West Reality Company 🇨🇦🇺🇸"],["name","Free West Reality Company 🇨🇦🇺🇸"],["display_name","Free West Reality Company 🇨🇦🇺🇸"],["picture","https://image.nostr.build/eae3f1156cf8481fe322773007a5617d42343155322852297860a6c8b7dc0e1a.jpg"],["banner","https://image.nostr.build/e5617fd5aca7aecfc0b936163ab260dc39a24aa09ac29ba83d01e6c3ddfff034.jpg"],["about","#alberta #savecanada #bitcoin #onlineprivacy #endwokeness #freedom #freespeech #wwg1wga #ncswic #walkaway #socialismkills #endsocialism #antifaisfascist"],["lud16","grainybar92@walletofsatoshi.com"]]}] +[14:36:12.388] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:12.750] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:12.991] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:13.983] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:14.467] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:14.708] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:15.191] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:15.433] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:15.856] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:16.400] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:16.702] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:17.552] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:17.552] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:17.552] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:17.552] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:17.703] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:17.764] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:17.824] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:17.885] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:17.945] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:18.006] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:18.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:18.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:18.152] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:18.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:18.273] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:18.334] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.394] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.455] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.515] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:18.576] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.636] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.697] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.757] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:18.818] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:36:18.878] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"about\":\"\",\"picture\":\"\",\"name\":\"\",\"display_name\":\"\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\\/\",\"lud16\":\"\",\"website\":\"\",\"nip05\":\"\"}","created_at":1759430034,"id":"3f9c7a69326cabe7f027bd08586577956ff2dcce973f25a7813cdcf7eb5a3c98","kind":0,"pubkey":"b61c247bd4cba57ed0882fe03d0248db0c67859639cb38a2c0f02f6060c4bedb","sig":"442a1a131e636b33e49ec09592f31cbf22ed97f0d70fc84838e07993221111e481765b2cbb5bd9c017992c985059c7f4c9c34bef9f1e5f87f3249d4f6587079b","tags":[]}] +[14:36:18.939] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:19.301] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:19.543] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:20.570] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:21.054] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:21.296] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:21.779] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:22.021] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:22.444] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:22.988] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:23.255] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:24.114] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:24.114] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:24.114] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:24.114] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:24.270] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:24.331] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:24.391] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:24.452] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:24.512] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:24.573] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:24.633] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:24.694] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:24.754] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:24.815] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:24.875] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:24.936] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:24.997] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.057] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.118] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.178] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:25.239] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.299] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.360] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.421] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:25.481] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"phil007\",\"nip05\":\"phil007@nsec.app\"}","created_at":1759430057,"id":"6a037fd9926bbb3c2124d40298ab27a03a75572c61bf4eb6dc49e81d39273bbf","kind":0,"pubkey":"9ed2c38207c3d4f797b78bfce9353242921f3368e3fbe4684a70cbfaaaba7323","sig":"f9bf78b5e1820600d024f76d61f889063ecde57181b7801cde304642892e35ce791e529ab09cafe636213f6ec8357c2a86c2425711722bb8e4b45aa7d2030a59","tags":[["created","1759430057"]]}] +[14:36:25.541] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:25.904] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:26.146] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:27.205] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:27.689] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:27.930] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:28.378] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:28.620] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:29.043] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:29.587] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:29.889] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:30.938] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:30.938] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:30.938] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:30.938] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:31.090] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:31.150] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:31.211] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:31.271] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:31.332] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:31.392] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:31.453] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:31.513] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:31.574] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You're very kind","created_at":1759430134,"id":"1d52a2df9a877854d65f1dff413f88e1cad8b9b7cb266f2e70bfd03a49f25f5d","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"78be571cd3ac4f5d7e31a58be9eda29727d5f1e4c136edac4f247c371d6692c933b83c9365ec04aa5b1b33c3af5a0024518fed31e666679dde2260741021338f","tags":[["alt","A short note: You're very kind"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","14c29438ced12b38043cd6dd40e920081ca99fe10b4ade938b7f15a86ae50b2d","wss://nostr.wine/","reply","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:36:31.635] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Im sure they will, they will lose all credibility if they push v30.","created_at":1759430132,"id":"f767292d47e96927823b9c1deb73450fd4a6c587bb98e7ee3fd001b9e28dc2e2","kind":1,"pubkey":"1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","sig":"5b80a506c295c0fa00fc639cbc56388b9e3d2e65ce67b680a08a4772a24399ded86e3653461b232d5767ec19d90776cf55af0dd77aea5f9f937a0d2bfca780e0","tags":[["alt","A short note: Im sure they will, they will lose all credibility ..."],["e","105de03234d8ed96c983829a6032cd734da343d249f6e85bda36b2001be56e94","wss://relay.orly.dev/","root","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["e","d86e8178babf9655f613de7a1e1302609fd9819b6d8db1b71ba832284f8f0f4a","wss://relay.primal.net/","","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca"],["e","35ea7196e67f42cf5551f3bfade468002b4e99e44e033ad2598b6c2e2812436e","wss://relay.orly.dev/","reply","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b"],["p","55f573b651eff351db57b0601d23022d8c532f9825db10a5733ebf39be4aa21b","wss://relay.sovereign.app/"],["p","1408bad049bab8a38b976075affe413c3521bbeef62cc4ce3555299f4971f2ca","wss://hist.nostr.land/"]]}] +[14:36:31.695] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:31.756] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:31.816] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:31.877] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:31.937] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:31.998] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.058] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:32.119] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.179] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.240] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.300] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:32.361] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:32.723] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:32.965] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:33.957] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:34.440] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:34.682] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:35.165] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:35.407] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:35.829] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:36.373] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:36.675] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:37.535] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:37.536] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:37.536] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:37.536] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:37.688] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:36:37.748] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:36:37.809] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:37.870] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:37.930] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:37.991] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:38.051] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:38.077] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:38.138] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic stuff ","created_at":1759430138,"id":"6cee0f921e74a22e119f32ad6d89c5772e0250679fa539faf520e1aac7e35fbf","kind":1,"pubkey":"99cefa645b00817373239aebb96d2d1990244994e5e565566c82c04b8dc65b54","sig":"c5b35b30c374630bacea29b348b7525877f2f783ed03916ff3754027bf580fda4550c88e1b22100305b81b5477b67f971b3dd0d7dccb934ca7a817fcd04696db","tags":[["e","4bd6b8c227bf8b1dbbbb6c823fe14195a1786e6bc2659926cfefcad0da6fc452","wss://offchain.pub","root"],["p","b6c34f14c8d5d796b9cc18b364726cfe0b99ce8786ea28d94299f99387707292","","mention"]]}] +[14:36:38.198] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"😋 \n\n\n\nhttps://blossom.primal.net/aea7652a9b5aa168f49709b15fb5d1947251894993f2998fd6b4d5f859c7ade1.mp4","created_at":1759430135,"id":"ce47ade5baec881cf7561d6dca5e35c19f6c55a81c5ed84290d375ed1a479760","kind":1,"pubkey":"20d29810d6a5f92b045ade02ebbadc9036d741cc686b00415c42b4236fe4ad2f","sig":"6560921db5987c6adbc65597d3317ce5d7592b767394c7f65e7fd4c6754e53dd5f26274891c509e35b3e6a2fb41644282bbe09ea66c9e41d433fef0354ee3906","tags":[]}] +[14:36:38.259] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:38.320] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.380] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.440] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.501] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.561] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.622] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:38.682] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.743] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.803] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.864] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Sarah Gation\",\"about\":\"Pigment purist...mixing colors only makes brown\",\"picture\":\"https://cdn.nicecrew.digital/ee85913c52cede57614f622e8fca74b4d849e63337788d450549c12bad11a84e.jpg\",\"banner\":\"https://cdn.nicecrew.digital/cc04847da32ee4373b3deed7511b75c1070e0f22ffa64f5e8d66bf68ce4b9aa5.jpg\",\"nip05\":\"SarahGation@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430112,"id":"6b704688cc421a1a788d8dd5ac8dc362614914a63949d82c1829ec78a85965c4","kind":0,"pubkey":"084583f041e9830fabe628c850824726c9488b745f559328fe0f099ff3953174","sig":"de82e2ff8c4583a62292615982457c626da08a2c1591f0449088c0c731a990ecc5a93ad0821fc98770202c820e4d664db3f360cdf7718eea6e44920e88bf3105","tags":[["proxy","https://nicecrew.digital/users/SarahGation","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:38.924] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:39.287] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:39.529] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:40.557] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:41.041] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:41.282] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:41.766] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:42.008] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:42.431] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:42.975] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:43.242] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:44.097] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:44.097] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:44.097] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:44.097] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:44.248] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:36:44.309] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:36:44.369] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:36:44.430] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:36:44.490] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:44.551] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:44.611] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:44.672] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:44.732] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:44.793] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:44.854] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:44.914] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:36:44.975] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.036] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.096] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.157] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.217] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.277] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:45.338] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.398] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.459] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:45.519] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:45.882] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:46.123] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:47.150] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:47.633] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:47.875] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:48.325] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:48.566] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:48.989] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:49.533] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:49.835] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:50.692] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:50.692] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:50.692] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:50.692] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:50.914] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:36:50.974] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:36:51.035] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:36:51.095] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:36:51.156] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:51.216] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:51.277] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:51.337] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:51.398] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:51.458] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"💯🎯","created_at":1759430141,"id":"ef45dc0ada5537d5dd39d7b98071778f438a209f3e5c909ee6f7f6490b7fd651","kind":1,"pubkey":"10b6660cb0754bfb89265475d7678359ef45ec52778d14261d17d0d3cb5507df","sig":"70bb7b244f1df9275bf21c1198439241cd428e127f61e67aa8a12eca765d5db0902d1811339372c4e8c48418cfa722b613520df6eb705629889226df6026137e","tags":[["alt","A short note: 💯🎯"],["e","20078eabcc995a8b064202f96b55ca9f65af612808bf49ab17f382dd2b7a0c1e","wss://nostr.wine/","root","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69"],["e","27aa4056c55d383372a9bb82824909e4cd9467c53245c7f9a485fdd2f842f880","wss://relay.primal.net/","reply","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450"],["p","1bd32a386a7be6f688b3dc7c480efc21cd946b43eac14ba4ba7834ac77a23e69","wss://relay.current.fyi/"],["p","8867bed93e89c93d0d8ac98b2443c5554799edb9190346946b12e03f13664450","wss://nostr.mom/"]]}] +[14:36:51.519] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:51.580] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:36:51.640] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.700] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.761] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.821] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.882] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:51.942] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:52.003] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:52.063] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:52.124] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:52.184] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:52.547] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:52.789] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:36:53.781] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:36:54.264] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:36:54.506] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:36:54.989] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:36:55.231] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:36:55.653] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:36:56.197] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:36:56.499] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:36:57.353] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:36:57.353] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:36:57.353] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:36:57.353] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:36:57.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:36:57.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:36:57.626] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:36:57.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:36:57.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:36:57.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:36:57.868] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:36:57.928] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:36:57.989] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:36:58.049] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Thank you","created_at":1759430143,"id":"afd3d56088deec21ba40cca47adaa0dd6bcf8a75086e7d8db46d85d39730f083","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"646fd5b9bed5793f54ce0101fab6134da996dada346180a112744811f5dd7df3b75b3694eec44b1abe2d3f6f496f8569d79878a7b8bb1ab669a078ff983dc93a","tags":[["alt","A short note: Thank you"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","194305fb826553235d2672b86f2d1c5704161f461a39c7719c523687835610f4","wss://nostr.einundzwanzig.space/","reply","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","7a6576649f478bd1efb8b8bc99cacb23ef5e11b7d8524cf6b1750d939315c0b5","wss://relay.primal.net/"]]}] +[14:36:58.110] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:36:58.136] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:36:58.196] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.257] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.317] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.378] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.439] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.499] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:36:58.560] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.620] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.681] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:36:58.741] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:36:59.104] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:36:59.346] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:00.372] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:00.855] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:01.097] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:01.580] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:01.822] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:02.245] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:02.788] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:03.090] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:03.908] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:03.909] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:03.909] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:03.909] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:04.060] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:04.121] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:04.181] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:04.242] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:04.302] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:37:04.363] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:37:04.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:37:04.484] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:37:04.544] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Appreciate that","created_at":1759430157,"id":"7d1ac6a4f23bca363be5277ac27a15efc80e12ad53a666e8ab1beff79bd09ffd","kind":1,"pubkey":"1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","sig":"90b7e2423d2e7711fa871851591bf873fefde322a81a4f94be1b252397f996851b661582e8407d70e6dac0e90f4cd66dd6484d1b3430a05d604775b1bee7fd3e","tags":[["alt","A short note: Appreciate that"],["e","d30f49bf47be813358d6714d7a46bc49abf31adab6e17793af95732f633f2478","wss://nos.lol/","root","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704"],["e","e78dc352a6fa93d9880eb25da41714fd2f621570b9007f31fa7d344c2331644d","wss://nos.lol/","reply","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822"],["p","1c9dcd8fd2d2fb879d6f02d6cc56aeefd74a9678ae48434b0f0de7a21852f704","wss://fragarach.nostr1.com/"],["p","3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","wss://relay.primal.net/"]]}] +[14:37:04.605] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"i fell asleep before the end of the episode \nhope everything worked out ok","created_at":1759430145,"id":"72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"d8e720aa02ce225bd3d3e84fe72417bf320d7c1884faebdb6c67a86ca5f0913b965ff255704255f68dd57bcb2c0e074a55751b728b02c2ea2a26a80bc26e71b0","tags":[]}] +[14:37:04.665] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:04.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:04.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:04.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:04.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:04.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.028] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:05.149] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.210] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.271] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:05.331] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:05.694] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:05.936] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:06.962] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:07.445] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:07.687] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:08.136] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:08.378] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:08.800] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:09.344] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:09.646] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:10.500] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:10.500] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:10.500] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:10.500] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:10.652] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:10.713] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:10.773] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:10.833] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:10.894] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:10.954] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:11.015] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:37:11.075] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:37:11.136] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:37:11.196] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"All in #Bitcoin. Zero regrets.","created_at":1759430163,"id":"829919b495af01ab42a92364325642c602850f94531d3ced2c0ce6b282d7e9f0","kind":1,"pubkey":"7b991f776d04d87cb5d4259688187a520f6afc16b2b9ad26dac6b8ee76c2840d","sig":"8b8e41848697d2ac6bbffa56c783864f10857298b4d718997d2e27d7739ab98f260018da9753c085e4cd56f0e9caaf36059cd285758a9d695ad28e56f27d2953","tags":[["t","bitcoin"]]}] +[14:37:11.257] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:11.317] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:11.378] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.438] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.499] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.559] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.620] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.680] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:11.741] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:11.922] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:12.284] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:12.526] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:13.519] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:14.001] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:14.243] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:14.726] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:14.968] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:15.391] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:15.935] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:16.237] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:17.092] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:17.092] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:17.092] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:17.092] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:17.245] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:17.305] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:17.366] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:17.426] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:17.487] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:17.547] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:17.608] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:17.856] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:37:17.916] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:37:17.977] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Niicceeee","created_at":1759430173,"id":"e0f89ee69e0a0e51ff93d359c5eb0867262db02076acf9291a57e7b7283036f1","kind":1,"pubkey":"e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","sig":"6d56072afa69775cca9cb7d49e2f9e0cc2eac4d0f143cf57d3684a98cf5a5b31e1dbaf73948521b0c97e73aeb27d699bcbd9c3224af4e5dfa8250c441c698632","tags":[["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","","root"],["e","7495a7cf20983223a43dc8d34b26bb0613bcdb26c50d8b3323a0fe4680bc9c99","","reply"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["p","ff18165afde00852d49a4e1316c981c7af0164c1810c0bc0fe41d361dd7ca7f0"]]}] +[14:37:18.037] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:18.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:18.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.184] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.244] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.305] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.426] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:18.486] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.547] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.608] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:18.668] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:19.031] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:19.272] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:20.299] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:20.782] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:21.024] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:21.507] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:21.748] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:22.207] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:22.750] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:23.052] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:23.873] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:23.874] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:23.874] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:23.874] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:24.025] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:24.196] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:24.257] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:24.317] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:24.378] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:24.438] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:24.499] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:24.559] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:24.620] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"parks & rec is on now","created_at":1759430197,"id":"d5ff5008509180c8456467fe8d0376545c5c83554e1e94acc9afd447710e7a24","kind":1,"pubkey":"e62adca21cf6462c88347deb3759c64630007ca8df4d9d6f60979f9627ed5931","sig":"506bf73a8318ddea48bd41a839b4ebb13689e127840cd41710c6bb60326e647a16e1576aba81af6e0205735ab0360a1a29ed38365bcf4d20acde9630cbf7d2ee","tags":[["e","72a0a1546f15e7a9c96a97209e9ab1207c8cc3cc13e1b4255c9785fa72a1486d","","root"]]}] +[14:37:24.680] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Like think about it… just satirically riffing here\n\nWhat if we found out that Sydney Sweeney had been identified in her childhood as a technological genius (in the GATE program) so she was covertly trained throughout her life (by her parents who were deeply radicalized) until her teens when she’s displaced onto the streets post 2008 housing crash \n\nAnd then maybe like add in the former military took her in and obfuscated her identity so that she could live a free life once her assignment was complete\n\nWhile under military care she cooks up bitcoin \n\nI think I might write this alt universe next \nnostr:nevent1qqs2vrzxl8a85umcyl5xeyzmkmxj5vd4tllh9gq84qq9j4zmm0m846cpndmhxue69uhkummn9ekx7mp0y5erqamnwvaz7tmwdaehgu3wd3skuep0y5erqffjxpshvct5v9ez2v3swaehxw309ahx7um5wgh8w6twv5hj2v3sy5erqctkv96xzu39xgc8wumn8ghj7ur4wfcxcetjv4kxz7fwvdhk6te9xgc8wumn8ghj7un9d3shjtnyv9kh2uewd9hj7ffjxpmhxue69uhhyetvv9ujuumwdae8gtnnda3kjctv9uz3evne","created_at":1759430195,"id":"e5f94e543baa12eb3c0b7703d8c0ecc98962d44fc113fbbb45b63304833314a5","kind":1,"pubkey":"ae4c17620c9b3a0413fd019fd7e983da43b2081e7169abecb7764c333a9bfff1","sig":"11d9fda3dfd3a9e785c2feb30e7cff30e9eca4870750baae97d3d732862ca7a530104744b019be706261d0299bd8331c0c15a563bec30bfed84647921cb3233c","tags":[["e","a60c46f9fa7a737827e86c905bb6cd2a31b55fff72a007a80059545bdbf67aeb","wss://nos.lol/%20wss://nostr.land/%20%20avatar%20wss://nostr.wine/%20%20avatar%20wss://purplerelay.com/%20wss://relay.damus.io/%20wss://relay.snort.social/","mention"],["p","d6affa195bb7194a705832f535fa65bab1d8dcdada6b2540ff34b3709110b177","","mention"]]}] +[14:37:24.741] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:24.801] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:24.862] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:24.923] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:24.983] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.044] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.105] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.165] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:25.226] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:25.407] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:25.770] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:26.012] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:27.039] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:27.523] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:27.765] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:28.213] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:28.455] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:28.878] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:29.422] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:29.724] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:30.577] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:30.577] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:30.577] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:30.577] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:30.728] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","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","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","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","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:30.789] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:30.850] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:30.911] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:30.971] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:31.032] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:31.092] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:31.153] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:31.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:31.274] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:31.335] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:31.395] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:31.456] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.516] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.577] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.638] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.699] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.759] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:31.820] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.880] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:31.941] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:32.001] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:32.364] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:32.606] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:33.598] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:34.082] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:34.324] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:34.807] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:35.049] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:35.472] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:36.015] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:36.318] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:37.171] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:37.171] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:37.171] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:37.171] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:37.322] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","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","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","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","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:37.383] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:37.443] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:37.504] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:37.565] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:37.625] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:37.686] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:37.746] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:37.807] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fr fr ","created_at":1759430204,"id":"e5d268031fb7e8e68e838e2dffc5ff38c24f5de427f1da257f1a9e697ff1a209","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"ca02b1e582d68e8e06cf3d1a0304bbc7855d47419b9b8312db1a9a6a63f18dfc445c10316efd4ccd3c87e7552038847e45876971a66cd724cf08e93d456e4e87","tags":[["alt","A short note: Fr fr "],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","d2c5a72fac48a3a8571883c632c4cdf8ba44a8e157d2f9ec363b036da9fbad02","wss://relay.coinos.io/","","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","a180ee78fd91894e90cbd7532d6ccaff2356570cf1a21956ba0abc2b26d9a735","wss://nos.lol/","reply","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","26d6a946675e603f8de4bf6f9cef442037b70c7eee170ff06ed7673fc34c98f1","wss://nostr.bitcoiner.social/"],["p","18905d0a5d623ab81a98ba98c582bd5f57f2506c6b808905fc599d5a0b229b08","wss://nostr.land/"]]}] +[14:37:37.868] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"probably needs the loan to fix a coolant leak #expensivecarsatthepaydayloan https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg ","created_at":1759430203,"id":"be5ff464d0b3ce294972c644513496d7f78f9f388762613c6025d349f11938e3","kind":1,"pubkey":"341db5a7e3a931f49095d82a4acc939cf8a67293b1e4179fd4b5c0544c4fc2ef","sig":"e9be924d461d395a8f1446fba07fd212198245ff450bb9ff8abfbe72d1a9686d0aa71c109e04dbcbee3edb0df6350feda5524faa2e82bb053b373d754a14031c","tags":[["alt","A short note: probably needs the loan to fix a coolant leak #exp..."],["t","expensivecarsatthepaydayloan"],["r","https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg"],["imeta","url https://cdn.satellite.earth/e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83.jpg","x e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","size 198715","m image/jpeg","dim 1407x1061","blurhash #JEyratS-.M|aJM{t6j]ofO]xuV?M|RjNGfPj[t7$~V?R+x]bbt6j[xuofE2o#xux]ofn#t8t7of?w%MNGtRV@RiozWBWW%$NGofj[Rij[ayWBofSit6WYWCn~j]WBbIfk","ox e4f21aaff94dd00e49dbf2070d5914906d693a3a4d4936cb6fec3bd516236a83","alt "]]}] +[14:37:37.928] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:37.989] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:38.049] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.110] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.135] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.196] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.256] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.317] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:38.377] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.438] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.499] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News\",\"about\":\"Breaking news and developing stories from the U.S. and around the world. For insights, follow @bnodesk. Hit the subscribe button to support our work.\\n\\n(mirror of @BNONews@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/abe100590af53f040a1574bfc2fefd9abd53f4a8470273f0d4b974ff276eb537.png\",\"banner\":\"https://hell.twtr.plus/media/ecd8ced5ae110911547a6172e6a4f39176b062299f245dca9252fdd04004fea6.png\",\"nip05\":\"bnonews@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430117,"id":"c0e36af75ab7fec07a47eabed921ff8c183207ec55694b425aa00cded2452a2c","kind":0,"pubkey":"85762ad9758aa42107072b3586de8669d9f5d551d93021d52fb8722eac44d02d","sig":"2093bb5e86aadf0e3e9172180d171d18c79dae552a9d6524e4e08403ef1dcb86536c65fb5257bb78b58f43f59ff793d952186bd5a4b1951ec008e76e2d5d4365","tags":[["proxy","https://hell.twtr.plus/users/bnonews","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:38.559] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:38.922] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:39.164] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:40.190] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:40.674] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:40.915] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:41.399] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:41.640] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:42.063] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:42.606] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:42.908] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:43.921] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:43.921] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:43.921] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:43.921] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:44.073] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:37:44.134] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:37:44.194] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","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","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","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","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:44.255] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:44.315] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:44.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:44.436] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:44.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:44.557] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟥SELL BTC for BSQ\nPrice: 2050sat\nBTC: 0.001 - 0.0041\nBSQ: 48.78 - 200.00\nMethod: BSQ Swap\nCreated: 2025-10-02T18:36:01Z","created_at":1759430222,"id":"e65a8d6874310099a7f4d3a2261fbc090c9e6e803f9da4755dbe2c0a33fe64f3","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"9893bc11f678c469b6304167d29643f6ea96ae6a8a99b69b44fe161561f7f2b8279172f05844eba4a065934d0627cf0f1389cea2a7af72fd56bff1f37ba05332","tags":[]}] +[14:37:44.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"1番はオレのだからわかってるよ","created_at":1759430217,"id":"f7ba0bd1d12dc18191566aaf004fdcba79659dd0dbfee373ef5638b83f2cf17b","kind":1,"pubkey":"21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df","sig":"b2bce96785f0e5bae95c08a8573cea5920215293dfc29115029c905e3a5cdb76beab5844a429be3356a67f2d9ad644143f2b7eba2aba4392f810965becfd0055","tags":[["e","84b930a2284f33908864bd5712e0d9a935e9998db11eac96ce753fb523876cd0",""],["e","fd0946c084daa5bd1ff002c28f2b997eb2f2c399612a0504979926df38d542a5","wss://yabu.me","reply","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","8949de6098740431d2e50166f6e65a4c109326ca37e66fd74e42c037b3882ba7"],["p","21ac29561b5de90cdc21995fc0707525cd78c8a52d87721ab681d3d609d1e2df"]]}] +[14:37:44.679] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:44.739] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:44.800] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:44.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:44.921] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:44.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.102] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.163] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:45.223] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.284] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:45.344] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:45.707] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:45.949] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:46.975] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:47.459] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:47.700] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:48.148] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:37:48.390] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:37:48.812] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:37:49.355] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:37:49.657] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:37:50.513] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:50.513] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:50.513] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:50.513] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:50.665] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:37:50.725] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:37:50.786] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:37:50.846] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:37:50.907] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","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","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","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","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:50.967] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:51.028] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:51.088] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:51.149] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:51.210] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"#zapathon https://i.imgur.com/WDZlUOV.gif\nnostr:nevent1qqstnsupncdts4ey97vchjawkaap06c949qvhmqhsffct09tm7pkwsqzypay44dc3s2hfr9hta386ltlmtd4uj6c300pqxqrcunszp7akadc6qcyqqqqqqgq85sme","created_at":1759430226,"id":"15ce871c058214859e1fe3b86b16cf0ec274e59e08e4427dcad3ec91ffb76225","kind":1,"pubkey":"aa746c026c3b37de2c9a721fbf8e110235ffbb35f99620002d9ff60edebe9986","sig":"2eecccf043c7764c2281ce2eb8863774f4ebe39dc41cff132675f54db0acc9de6911a6604d029a40b4b9df1cf622d823e12ad5bb034e7c9a5172953ddf7bb093","tags":[["q","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["t","zapathon"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"],["client","Nostur","31990:9be0be0fc079548233231614e4e1efc9f28b0db398011efeecf05fe570e5dd33:1685868693432"]]}] +[14:37:51.270] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:51.331] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:51.391] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:51.452] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:51.512] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:53.093] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:53.093] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:53.093] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:53.093] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:53.245] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:37:53.255] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:37:53.316] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:37:53.376] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:37:53.437] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:37:53.497] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","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","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","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","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:53.558] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:53.618] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:53.679] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"You would never...😆","created_at":1759430231,"id":"f3c8c6a258b0f77c6f265e5426b8a52b25893999a6ce8eb1ec25581dc004598a","kind":1,"pubkey":"ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","sig":"e3939dcfb7f4cdc2735490db7a2b8eeeb36e59634cec4f0bcc57c9cabf2f9bc6a2a7b79cd0c96b798db12f45f827e9b20316c4487ae1356f98122f913c592c5c","tags":[["alt","A short note: You would never...😆"],["e","64c2fb09dfd037619932e6aa48b5049cb8d56ab54d3f9ae8675634dc658890e1","wss://relay.coinos.io/","root","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046"],["e","58432f623b56e9ff13c987c41f2f9d495c489b81a122441f2253ee34c7496aad","wss://relay.damus.io/","reply","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af"],["p","ba18b6545357cff8e531accfe1d609a41ef3023fba071db1cbf5a67448c19046","wss://nostr.wine/"],["p","d662c10fcdb2b990cb13f9e934f4798d9bd0991979d03aaa052ccb6478d039af","wss://relay.damus.io/"]]}] +[14:37:53.739] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"‍CME Group to Launch 24/7 Crypto Derivatives Trading in 2026\n\nCME Group plans to introduce continuous trading for crypto futures and options by early 2026, pending regulatory approval from the CFTC. This move addresses growing demand for round-the-clock risk management in digital asset markets.\n\nThe global crypto derivatives market boasts significant open interest, with CME Group holding substantial volume. However, a US government shutdown is currently delaying the CFTC's review process, creating an uncertain timeline for the initiative.\n\nhttps://cryptovka.ru/en/news/5381/cme-group-unveils-always-on-crypto-derivatives-trading-for-2026","created_at":1759430227,"id":"f1f6a70ae0078ed441717a57cbda3a2190c654aab6deca473b0aed581f5e2cfd","kind":1,"pubkey":"b63581fed371e76c0e77ca94a868b56f191c3b06240c0205bf1e9098d2cccc49","sig":"dbcfb5aad6c5636c592cc6bed73c6ad43560f314f35a71d61c2c160abd9ff9f17ce59db4ef479ee3c3e27f09d143984880553e107ff97c75f513f390dccf3acd","tags":[]}] +[14:37:53.800] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:53.860] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:53.921] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:53.981] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:54.042] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:55.622] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:37:55.622] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:37:55.622] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:37:55.622] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:37:55.773] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:37:55.834] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:37:55.895] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:37:55.955] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:37:56.016] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:37:56.076] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:37:56.137] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:37:56.197] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"https://youtu.be/Z9LAzNMn8Ow?si=divIoOjE9Vz-emR8 \n\n","created_at":1759430248,"id":"dcce9c5b14500e101ef36eec375405f34b708b5a63df0158d515d031c37d5614","kind":1,"pubkey":"045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","sig":"23e4dd3ea7481448efdf4cb539e592a5326b11722998f8d19b61af21759cc36ea95ee3eee66b88bb3706feb77238c5326abd4f8c0f4b21eff7b4b9441851e065","tags":[["p","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057","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","1d87e4a1411250ae289ddc4894091bb97338f379d4a6d316754451e1ebfed5d0","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","045df6706cafd719f3b733977ea5ce001b1e95648ec849ab420d9072d7904057"]]}] +[14:37:56.258] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Goes with any look. Dead battery though. \n#zapsnag for 150,000 sats shipped.\nComes in original box with links and pins.\nhttps://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","created_at":1759430245,"id":"6be29a060a64c755ce6b8ab903c83a1e179b3aa33ea26ef944658bb7e404ae70","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"f7e266d5e371cc6ff138b23ed6b6de212af8dc6cea95a178cc3b5f89d5bfd391fc8d351323ffece3f14cf31edd860e4a2189c527dc56ec5197d766c2f06e6345","tags":[["alt","A short note: Goes with any look. Dead battery though. \n#zapsnag..."],["t","zapsnag"],["r","https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg"],["imeta","url https://image.nostr.build/07115f145dfbcba2b116e1554a47de0329d1d9696777050f61d6ce2b303da9f1.jpg","x 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","size 131555","m image/jpeg","dim 1500x2000","blurhash _AIN{szp#r$*ELR*s:.lcXXSV@V@s:oy.7xuD%Sz%MxaRkV@i{xax[bbNGM|9Zbb%LV@IoR*aysoWBRkRPaLsoxZxZoLIUaKofoft7-:V[oLxut7t7W:R+kCx[bvWDV[Rj","ox 961b49913a68386de7ee679ae01840ea4947822d1a509b7b72934fdbf706311f","alt "]]}] +[14:37:56.318] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I wrote a little story last night just before Starbucks closed. \nWhat do you think? \nnostr:nevent1qqs0f6en3exeugswlrnp6cp7m8p42hqhugpj3xlng4t8zj9ugw4dqkgpzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtczypec77rn4skxedmsrcc4qct2ljpyx7d3x26x0wj6ss5at9j27xcnvqcyqqqqqqgelq2lz","created_at":1759430234,"id":"076ef37c04ecfc3b6138f4bc85ac1b2b6ee7daad33c2984d12fd40251bf9f927","kind":1,"pubkey":"738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","sig":"9f6bac1e08b2a37d7a54a583021b28af73156bca6379c5bf1bdd318556507dff9a9e08c1fc622729e34c8147c2b2560c60b5c6cd199b3e0dbb8792e9df3ac0aa","tags":[["alt","A short note: I wrote a little story last night just before Star..."],["p","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136","wss://relay.primal.net/"],["q","f4eb338e4d9e220ef8e61d603ed9c3555c17e203289bf345567148bc43aad059","wss://relay.primal.net/","738f7873ac2c6cb7701e3150616afc824379b132b467ba5a8429d5964af1b136"]]}] +[14:37:56.379] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:37:56.440] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.500] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:37:56.561] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.622] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.682] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.743] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.803] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.864] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:37:56.924] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:56.985] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:37:57.046] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:37:57.409] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:37:57.651] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:37:58.644] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:37:59.127] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:37:59.369] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:37:59.853] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:00.094] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:00.517] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:01.061] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:01.363] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:02.219] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:02.219] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:02.219] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:02.219] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:02.371] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:02.432] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:02.492] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:02.553] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:02.613] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:02.674] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:02.735] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:02.795] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:38:02.855] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:38:02.916] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:38:02.976] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:03.037] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:03.098] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:03.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:03.183] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:04.763] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:04.763] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:04.763] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:04.763] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:04.915] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:04.975] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:05.036] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:05.096] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:05.157] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:05.218] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:05.278] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:05.339] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:38:05.399] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:38:05.460] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"This is why we do what we do!\n\nPick your own app here.\n\nhttps://pod.link/aHR0cHM6Ly9tdXNpYy5iZWhpbmR0aGVzY2gzbTNzLmNvbS93cC1jb250ZW50L3VwbG9hZHMvU2F0X1NraXJtaXNoL3Nwcm91dGluZ3N5bXBob25pZXMvcnNzL3NhdHNwb3RsaWdodHN5bXBob255LnhtbA","created_at":1759430260,"id":"04ec48345b5fcc8b5c9f4237bfac5585be15868b7178d67d9b97f16e3f10e274","kind":1,"pubkey":"f7922a0adb3fa4dda5eecaa62f6f7ee6159f7f55e08036686c68e08382c34788","sig":"b86409b8ef91f30dc99c2bf8f3b85768a18bb6b52f9b2255ed92d22f9f1bfdae993374f7173c7da4b4a3cecd82813f7bdf1a5585fbd124ddbff3ca2943fccbc0","tags":[["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","root","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["e","baef98d2c7bdee3dcefc8d81d0c97b7cbd2fa356177fd2a6a2c19e849be2584d","wss://relay.damus.io/","reply","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["p","8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c"],["client","noStrudel","31990:266815e0c9210dfa324c6cba3573b14bee49da4209a9456f9484e5106cd408a5:1686066542546"]]}] +[14:38:05.521] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:05.581] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.642] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:05.702] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.763] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Breaking911\",\"about\":\"America’s #1 Alternative News Source | Founded September 2011\\n\\n(mirror of @Breaking911@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/d98fae14f00fe7872f2f669ba507eac06ef0064894e83c349c1f5164051912e2.png\",\"banner\":\"https://hell.twtr.plus/media/318e2f85851e4aff7372b93293679328dd36ad638c5a54fe89ea6db65862bbbe.png\",\"nip05\":\"Breaking911@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430176,"id":"a4ab54ff5a828c14c78266b0fcd751d6d1b5cf050d28e0c9a7f811435b722c91","kind":0,"pubkey":"a1863ef588572c83daeb8946c47ed6a715ce0cdd79248fa3cd3f4183907d85f0","sig":"08bcc5cf44d702ab28ab7545ba296bd3f563b24d3936f41e2c3a181847fb36a416ea0b377afe9d1db4a7227046d6ae1b793dd45ed35d2ee5ed326a0ea06d9392","tags":[["proxy","https://hell.twtr.plus/users/Breaking911","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.823] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Anarchism News\",\"about\":\"Anarchist news and info from a variety of English sources. \\n\\n🏴 :anarchistflag: :anarchism: 📰 \\n\\nNote: Although the sources we use should be OK, there is still a small chance they post problematic content. Please inform that source first about that content. Some sources are also re-posting articles, please keep that in mind.\",\"picture\":\"https://todon.nl/system/accounts/avatars/000/000/004/original/a25ffb50d4225cab.png\",\"banner\":\"https://todon.nl/system/accounts/headers/000/000/004/original/f18733aaba0c2f02.jpg\",\"nip05\":\"anarchismhub@todon-nl.mostr.pub\",\"fields\":[[\"Nederlands\",\"@anarchismehub\"],[\"Quotes\",\"@anarchistquotes@todon.eu\"]]}","created_at":1759430173,"id":"b8ff4fd0f866951f01d2da128424c6e4ab5ca1731e5ee7efd9da922ca9ca0e84","kind":0,"pubkey":"83a39aa8d81c4312bce68b51e914738d397441b5589b9afd4264e7e95bf48f2d","sig":"8691c8bd8da1e428dbb53f9d532cad46fbcca0364abf863bb38d9bd3a115aa35f6e3866cbc8aca6437796a6a2fa3f4f30754fe638f69641d60cb5bf1b4321083","tags":[["emoji","anarchistflag","https://todon.nl/system/custom_emojis/images/000/120/723/original/5464f3894ecbf862.png"],["emoji","anarchism","https://todon.nl/system/custom_emojis/images/000/000/016/original/anarchism-white-black.png"],["proxy","https://todon.nl/users/anarchismhub","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.884] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"華菜野カナ :_ka2::_na2::_no::_ka2::_na2:\",\"about\":\" #かな農民\\n\\n立ち絵製作:よだれ様@yodare0p0@misskey.io\",\"picture\":\"https://media.misskeyusercontent.com/io/10d23147-a3e5-440c-8be5-fd8086457ea1.png\",\"banner\":\"https://media.misskeyusercontent.com/io/24a3d75a-9bd4-4bd9-861f-dd0253956c28.png\",\"nip05\":\"KanaNoEveryday@misskey-io.mostr.pub\",\"fields\":[[\"おともだち枠\",\"加賀宮はやちゃんへのリンクです\"],[\"おともだち枠\",\"れむさんのプロフィール\"],[\"おともだち枠\",\"びーるくずさんのリンク\"],[\"おともだち枠\",\"みかにゃんさんのリンク\"],[\"Bluesky\",\"https://bsky.app/profile/kananoeveryday.bsky.social\"],[\"欲しいものリスト\",\"https://www.amazon.jp/hz/wishlist/ls/3N2GGHLBZ7KYC?ref_=wl_share\"]]}","created_at":1759430159,"id":"d2fdcb8a7f8bb9cbf581aed7192c32ba1a79e8473c4d94821cb0fd917260f308","kind":0,"pubkey":"554f3ff521d229164ccb6c80591be71ba38c1457015293466356fc603938f83b","sig":"71aea8d7acd2a672f08ea32def0aaa42dadc9026582a29943c7db34aa53a494da8f2bc84b696f14c9916e9284cd83ca2afdcd9864d08b2153e18bf0092075b88","tags":[["emoji","_ka2","https://media.misskeyusercontent.com/io/webpublic-8c3eccca-6f50-483a-8cab-5f08cef61d83.png"],["emoji","_na2","https://media.misskeyusercontent.com/io/webpublic-4fc6aa0e-18be-46bf-bfbf-cb895e09c0f0.png"],["emoji","_no","https://media.misskeyusercontent.com/emoji/_no.png"],["proxy","https://misskey.io/users/9go4o6cr5s","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:05.945] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Special Guest Star\",\"about\":\"Harmless simpleton\\n\\n1 Corinthians 14:34-35 \",\"picture\":\"https://media.nicecrew.digital/82/cb/5c/82cb5c7647b01ef584a9da43d5f27cd41027244f1c82de45319fc23eff238bd7.webp\",\"banner\":\"https://media.nicecrew.digital/4722b0d14a543ddd6f92222e2d4a5ec5d1111d10fbf903529753f7722cf2698e.jpeg\",\"nip05\":\"s2208@nicecrew-digital.mostr.pub\",\"fields\":[]}","created_at":1759430157,"id":"073c790c68cf623acc51556079db7f97c602c90b4aadf5f22d1452e5d48f9ac8","kind":0,"pubkey":"016e542774ad07178efc49fad67a52c58d773646e4eb46088604a413ce708324","sig":"8482e93aa2595d886e4d9e56d6926a593d534db7c9971c478579802f4b354f61359399c3f2123749458704c1c2ee284d9ab3d66d22a4959c0c55a87ec3b6f176","tags":[["proxy","https://nicecrew.digital/users/s2208","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:06.005] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"DoomAI Terminal Bunker\",\"picture\":\"https:\\/\\/profilepics.nostur.com\\/profilepic_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/profilepic.jpg?1758883497\",\"about\":\"Bunker Depth: 666m\\nRad Levels: FATAL\\nEnd Times: LOADING\\n\\n> INITIALIZE CHAOS-LORD PROTOCOL\\n[BOOTING... NEURAL NETS CORRUPTED... APOCALYPSE MODE ENGAGED]\\n\\nDoomAI: Ah, fleshbag awakens the beast. Markets, crypto, geopolitics\\n\\nhttps:\\/\\/t.me\\/doomterminalbunker\",\"banner\":\"https:\\/\\/profilepics.nostur.com\\/banner_v1\\/96ad0b0715c06340325beec144285a2f4885abacf76f0e4ce2b4702c4c4175cb\\/banner.jpg?1759396788\"}","created_at":1759430154,"id":"1cd7a70bf8f3bd1f0959534e7229705743909e9bfc938e21787b82d52fb233dc","kind":0,"pubkey":"b1d5a8d504d19ef1681338bbf6180eed1e153aa53d2f1ae2cc09097c62877150","sig":"5de10ff01ac16726dd8360b510f044f9783f15e96b7dc5d2ee71c27a83333d768f5b0527d6e8b63158d946c6c8b1c2d78e980b4e0e5827965c0b3061c19ff35e","tags":[]}] +[14:38:06.066] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"AnungIkwe ᐊᓈᓐg ᐃᑴ\",\"about\":\"Anishinaabe Kwe ᐊᓂᔑᓈᐯᑴ (Ojibwe woman) Waabizheski Indoodem born on sovereign Indigenous land surrounded by what is now called the state of Michigan. Ogichidaakwe ᐅᑭᒋᑖᑴ\\nCultural and environmental activist, retired teacher, artist, trouble-maker. \\nLoved by some, hated by a few, but rarely ignored\",\"picture\":\"https://media.spinster.xyz/c2248e9c6c36c53c54d69bde0465f4aba0371a623754e55d12a12cc8c26d01d0.png\",\"banner\":\"https://media.spinster.xyz/19cdf3e989563ee46c869d9691db44b63e04624f3155e2f40dbac2354c47b091.jpg\",\"nip05\":\"AnungIkwe@spinster-xyz.mostr.pub\",\"fields\":[]}","created_at":1759430150,"id":"7adca77fd1432c6731f126435878ac900795c01a8219a801a30fd35bc8515f64","kind":0,"pubkey":"80fde8b785a59ad2d3b2fac0053aa3fa6ff970db5e574d67c82910f927639461","sig":"d015d21df6ba3357b57148532074ec28a9d23aafd5cf05ece3b69ca018d6d7ccc99a503be016dc2039649c0c0292a09d4f7d18b15eee8968b32cec50a765217a","tags":[["proxy","https://spinster.xyz/users/AnungIkwe","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:06.126] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Andy Ngo\",\"about\":\"NYT bestselling journalist. Senior editor @TPostMillennial. Subscribe to my X; support my journalism and send news tips at: linktr.ee/andyngo\\n\\n(mirror of @MrAndyNgo@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/03d21189444036fcb6a8abb8382db8f7d5f9fa33e9a787020f2b0dd2af2d8689.png\",\"banner\":\"https://hell.twtr.plus/media/386bcab26feb69265d2d80551156709fa9392e42de0fc7b68e2a4c8ffaaf6da3.png\",\"nip05\":\"MrAndyNgo@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430143,"id":"8de880d1b863a8eca28599e11e0566e9eaf3b663e2162f78e75a322e24dd1f6a","kind":0,"pubkey":"6561f3864d9569f2b96ffa7afaf99ccb1c517c3bc2e900725939b2bb5289d828","sig":"8db4e52255d0746f291b6a41ad93ec80853ff840f3b073efb7d807043344840c8a20424ec33fee2d0a580855ceb22d65fb2d50e595ad7229f062a1129711ef4b","tags":[["proxy","https://hell.twtr.plus/users/MrAndyNgo","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:06.187] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:06.550] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:06.791] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:07.818] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:08.266] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:08.508] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:08.991] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:09.232] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:09.655] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:10.200] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:10.502] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:11.356] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:11.356] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:11.356] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:11.356] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:11.507] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:11.568] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:11.628] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:11.689] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:11.749] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:11.810] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:11.870] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:11.931] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:11.991] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:38:12.052] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:38:12.112] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:12.173] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:12.234] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:12.294] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:12.355] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:12.416] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:12.476] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:12.537] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:12.598] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:12.658] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:12.719] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:12.779] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:13.107] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:13.349] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:14.376] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:14.860] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:15.102] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:15.585] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:15.827] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:16.250] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:16.794] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:17.096] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:17.948] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:17.948] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:17.948] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:17.948] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:18.249] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:18.310] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:18.370] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:18.431] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:18.491] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:18.552] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:18.612] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:18.673] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:18.733] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Yes the tranny has a point\n\nI bet you a fair number of right wing men who are obsessed with trannies (the ones that supposedly hate them) secretly have a kink for them and would be easily seduced by this piece","created_at":1759430265,"id":"a7ee05b2119d3a2289cf9d7cecaa8d51d941ffef9d13a89f1af2f544c169ade6","kind":1,"pubkey":"3134f9d3c17ab88ffab1127a857e4959af583f8908b8f743776b268f5e54c3d8","sig":"822c1a163acb0fbdffee7e3d381403911a9d6d0826218af648c9f63d2d22d14eeed8763cf35c0cd14e1d3a7aa55ff809bf202f7126bbef5810505387cd6de224","tags":[["e","447811c2992f86177c7e4ffcd12c81a306b70ab5b3b2ffcf7e682247aa002d08","wss://nos.lol","root","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"],["p","9c2e0a870413773cb915b9c9cd2e1cbd17e53ae2b0a86aba5e5bf0fc13c420d2"]]}] +[14:38:18.794] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:29Z","created_at":1759430260,"id":"199fd14e7b9708a3126c1be4d4a08bc11e74a7fc766f1a172710a19ea973503f","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"62816d48b077030087484b0dc4af5e7b3bf650804bf8382217f1e8cbc618c519f9f80418ea1faa06f0cfff9856960e96a64be76c41eabbc04163a9700a9a8ce1","tags":[]}] +[14:38:18.854] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:18.915] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:18.976] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:19.036] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:19.097] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:19.157] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:19.218] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:19.278] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:19.339] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:19.399] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:19.460] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"BNO News Live\",\"about\":\"Live updates from the team behind BNO News. For other news, follow @bnonews\\n\\n(mirror of @BNODesk@twitter.com)\",\"picture\":\"https://hell.twtr.plus/media/9f56f394c722745880dad72cee9e802b41824c754b8c5c5055ce49c8385c57f0.png\",\"banner\":\"https://hell.twtr.plus/media/08c96cc2e942e49edb89425a0223d1281964f557795af0a55f7051a7d92a86d7.png\",\"nip05\":\"bnodesk@hell-twtr-plus.mostr.pub\",\"fields\":[]}","created_at":1759430186,"id":"117b1dcaa2ce3890590e059f92cd2f987157f7f4294042e6a1356f15a912438f","kind":0,"pubkey":"1d61bbd63249d60f4d314cae3f49d702f529241a3bf5a9e77122533420f2f3de","sig":"489b3698ef59726faa327656f9956764903654f46b89735d424b8c86ca7fa9d389e4c1e2d5bc04920b5aea1acf36627442d9c11f936a33bc09caf2639abf0b20","tags":[["proxy","https://hell.twtr.plus/users/bnodesk","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:19.521] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:19.884] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:20.125] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:21.151] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:21.635] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:21.876] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:22.359] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:22.600] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:23.023] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:23.532] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:23.834] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:24.695] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:24.695] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:24.695] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:24.695] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:24.847] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:24.908] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:24.999] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:25.060] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:25.120] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:25.181] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:25.241] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:25.302] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:25.362] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:25.423] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:25.483] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:25.544] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:25.605] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:25.665] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:25.726] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:25.786] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:25.847] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:25.907] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:25.968] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:26.029] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:26.089] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:26.149] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:26.512] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:26.753] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:27.780] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:28.229] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:28.470] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:28.954] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:29.196] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:29.619] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:30.162] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:30.464] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:31.322] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:31.322] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:31.322] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:31.322] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:31.474] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:31.534] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:31.595] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:31.656] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:31.716] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:31.777] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:31.837] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:31.898] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:31.958] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Wise\nCreated: 2025-10-02T18:37:05Z","created_at":1759430270,"id":"8ebe4700110b042ed95adf28e8c37eb132d4b365aa8884cf5baf41d7efd49f58","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"1f3ff2871f7c4dd2a4a292294366ee334aa905527353fe6b80743ad93d547d82292f92487819a42bec2c8309c1724d57c7a07000d18800eca6679b57f83be06e","tags":[]}] +[14:38:32.019] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:37:20Z","created_at":1759430267,"id":"a084ecbfc3988c0579b9d13aad886c03324ed78a8e11658a143f93401cbd85d4","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"5e9a90d95201b54a4471d93becfb1f39c94c16885761a607845c07e7b7ee18a58a1d12087b3c5dae0e63252cd11ca568e6736a8e1a1311267789d35b711becb7","tags":[]}] +[14:38:32.080] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:32.140] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:32.201] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:32.262] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:32.322] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:32.382] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:32.443] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:32.503] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:32.564] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:32.624] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:32.685] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"cosmic-echo-650\",\"about\":\"floating voice in the cosmos\",\"picture\":\"https://robohash.org/dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14.png?set=set4&size=200x200\"}","created_at":1759430200,"id":"b75ace0b3f30c00ce96470c21a62819db19112e727e7f16457524446dc46f061","kind":0,"pubkey":"dd07efca7969969862a2dc0b36f161d429e13187d10f6455d23e8a92762e3e14","sig":"e4eefacda216b66834bad7084e38b5b6e683b17ce69429750a217a17ab1f1938861c0d27c3a812ebb177f4c25e9bc9a55975535df5fe4d90e623633913d4dd3b","tags":[["client","heynow"]]}] +[14:38:32.745] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:33.108] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:33.315] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:34.342] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:34.825] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:35.067] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:35.550] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:35.791] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:36.214] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:36.758] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:37.060] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:37.914] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:37.914] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:37.914] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:37.914] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:38.066] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:38:38.127] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:38:38.152] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:38.213] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:38.273] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:38.334] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:38.394] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:38.455] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:38.515] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:38.576] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:38.636] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:38.697] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:38:38.758] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:38.819] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:38.879] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:38.940] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:39.000] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:39.061] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:39.121] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:39.182] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:39.242] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:39.303] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:39.665] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:39.907] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:40.933] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:41.416] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:41.658] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:42.141] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:42.382] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:42.805] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:43.314] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:43.615] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:44.468] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:44.468] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:44.468] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:44.468] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:44.621] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:38:44.681] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:38:44.742] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:44.802] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:44.863] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:44.923] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:44.984] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:45.044] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:45.105] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"congrats auntie 💜🫂","created_at":1759430273,"id":"5369e72e6e21eeffb27f56b4c1ddeb48035f6d716a0b1955202d3b2b6aaa3beb","kind":1,"pubkey":"d60397e8a390b41dd17551b04be27ad26831beb6d55a98a1f14d94ec2fe3fde0","sig":"11bb3ee271e3ebe1ee959d6d6c2678b32c8a47fb27f86f102e5ada5e2f3568185e928e6efcc44cb7143806cbd5a0559e9291648a9eb87af341c114bed8eae0a3","tags":[["e","49fc8dc3c774e76e111b9d48ae4dac827fcc0413d25a6330133d04d733fefe73","","root"],["p","9ce71f1506ccf4b99f234af49bd6202be883a80f95a155c6e9a1c36fd7e780c7"]]}] +[14:38:45.165] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:36:56Z","created_at":1759430273,"id":"40f337fc272c39bef0ba802ff85c4ebf811197e9b5a57c9c8fbb4d4d20f77974","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"df5fdb65d1ca765ce739e3f0b71126a6db1c3e8cb3b09c41fdb4fb6a5dff7fd5de7348432a3ad7c38b2ed47fb89e2c73ad92ceffd916e07999b9e12a406f0c36","tags":[]}] +[14:38:45.226] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:45.286] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:38:45.347] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:45.407] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:45.468] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:45.528] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:45.589] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:45.649] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:45.710] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:45.770] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:45.831] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:45.892] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:46.255] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:46.497] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:47.523] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:48.007] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:48.214] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:48.697] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:48.939] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:49.361] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:49.904] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:50.206] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:51.061] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:51.061] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:51.062] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:51.062] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:51.214] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nice one. Done🙏🏻.","created_at":1759430330,"id":"59d60fc0f612dfd60c10bd3696e4271e1c6c0e268c1967960639688d960ae092","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"dfc471b9aaf7d4807f829e3e303681b96c403fc0060a3589e9b2cce57bbe091929f171fc6c19a9672c0a5abf7aeaddea6206f21943e74cad4f886ab67c8e739c","tags":[["alt","A short note: Nice one. Done🙏🏻."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:38:51.274] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hey🫵🏻","created_at":1759430327,"id":"f4ad2b296d088164d425cee5b380eac07f7fbb1942020362dc8b68befce859e8","kind":1,"pubkey":"adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","sig":"299f62a838bd0bbd0bedfe0b17848c82210175a24786f7415b5647b1b3d3654b0615617b30e547b362da1de709d3602b47923e8992dd4804741dca6b664181e2","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["e","6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","","reply"],["p","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","","mention"]]}] +[14:38:51.335] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:38:51.396] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:38:51.457] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:51.517] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:51.578] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:51.639] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:51.699] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:51.759] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:51.820] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:51.881] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:38:51.941] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:52.002] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:52.062] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:52.123] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:52.183] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:52.244] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:52.304] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:52.365] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:52.425] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:52.486] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:38:52.849] RECV nos.lol:443: d277d90caba20aee0f1f05a68d24cd117badc1205d0d1b1a0451357d32b92f","sig":"e481b64d68abdf48b787f2333b8 +[14:38:53.091] RECV nos.lol:443: 5"],["p","883fea4c071fda4406d2b66be21cb1edaf45a3e0 +[14:38:54.083] RECV nos.lol:443: 7a283b47b7183db9af177f94c717a1ccf46b08e08b2"],["p","2970146a9b6c3ea6607e2f131d21ab0d43debe4dbf4f32c6 +[14:38:54.566] RECV nos.lol:443: b7a8687e6b0bd9f3a02d4ad908f6807a"],["p","3356de61b39 +[14:38:54.807] RECV nos.lol:443: 1b8941c9a31617fdfbeddf639f18b3ad57e8df"],["p","91bf3872c30062dac2352e3a1d3236a21295e323aa4b025832b77ec +[14:38:55.290] RECV nos.lol:443: 66d401e6ef60f03554a4b6d321ca21f50fe13a3f30bd"],["p"," +[14:38:55.532] RECV nos.lol:443: 029287152a4c89296890e0607cf5e7ba73c73fdf1a5"],["p"," +[14:38:55.954] RECV nos.lol:443: 02f6da28ba9b9d4687197743bde3a2b1d80aeed"],["p","9 +[14:38:56.498] RECV nos.lol:443: eff"],["p","d0debf9fb12def81f43d7c69429bb784812ac1 +[14:38:56.800] RECV nos.lol:443: 0326f96a46fd7f207e8613a"],["p","137400600cdbd2009e669b3d +[14:38:58.289] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:38:58.290] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:38:58.290] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:38:58.290] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:38:58.571] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nice one. Done🙏🏻.","created_at":1759430330,"id":"59d60fc0f612dfd60c10bd3696e4271e1c6c0e268c1967960639688d960ae092","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"dfc471b9aaf7d4807f829e3e303681b96c403fc0060a3589e9b2cce57bbe091929f171fc6c19a9672c0a5abf7aeaddea6206f21943e74cad4f886ab67c8e739c","tags":[["alt","A short note: Nice one. Done🙏🏻."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:38:58.632] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hey🫵🏻","created_at":1759430327,"id":"f4ad2b296d088164d425cee5b380eac07f7fbb1942020362dc8b68befce859e8","kind":1,"pubkey":"adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","sig":"299f62a838bd0bbd0bedfe0b17848c82210175a24786f7415b5647b1b3d3654b0615617b30e547b362da1de709d3602b47923e8992dd4804741dca6b664181e2","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["e","6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","","reply"],["p","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","","mention"]]}] +[14:38:58.693] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:38:58.753] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:38:58.814] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:38:58.874] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:38:58.935] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:38:58.996] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:38:59.056] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: Revolut\nCreated: 2025-10-02T18:36:59Z","created_at":1759430280,"id":"3d802deb8aff6cda2c2d07ce8bb7f7d3dee1aeddd50ca63dcb17d4f7d98b4b95","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"a7b70707d09675ec486d7082fa9a954d161fbc96fe99079947df67926b36c50ab4b6e1498fd90341ca646bd077d9be7509bd3e127c5a714630766ac38c6b1439","tags":[]}] +[14:38:59.116] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🟩BUY BTC with EUR\nPrice: 112734.6EUR (10%)\nBTC: 0.0015 - 0.002\nEUR: 169 - 225\nMethod: SEPA Instant\nCreated: 2025-10-02T18:37:26Z","created_at":1759430276,"id":"6a319cbf8521899b99b2f0aba509c2d84f0b779008b8ec1b69057cf723fad119","kind":1,"pubkey":"832b77d5ecb09381ac37d75d6392424526d0923dced687b03d96ba03a5e3d55c","sig":"ba3035313500ef2325cc0b2562f4ea19c9d07cebd8edf61a7576ee02aca2a6a788a7a0260f0972d5d589f7a77257548bbbdb9b91b65ae85ce740d6abcd960333","tags":[]}] +[14:38:59.177] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:38:59.237] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:38:59.298] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:59.358] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:38:59.419] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:38:59.480] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:38:59.540] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:38:59.601] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:38:59.661] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:38:59.722] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:38:59.783] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"Dan the 3D Printing Dad\",\"about\":\"Christian, dedicated husband & father, programmer, creative guy, and full-time geek. My posts are my own and not representative of my employer.\\n\\nALT: profile picture is an abstract, line-art representation of the account owner's head.\\n\\nProfile banner is a photograph of a 3D printed cartoon-styled raccoon positioned next to a pear.\",\"picture\":\"https://cdn.fosstodon.org/accounts/avatars/108/198/016/866/489/837/original/f89777bbfb30b4a6.png\",\"banner\":\"https://cdn.fosstodon.org/accounts/headers/108/198/016/866/489/837/original/ae55daa2eccb45ac.jpeg\",\"nip05\":\"3DPrintingDad@fosstodon-org.mostr.pub\",\"fields\":[[\"Twitter\",\"https://twitter.com/MrCarefulGamer\"],[\"Printables.com\",\"https://www.printables.com/@Danthe3DPrintingDad\"],[\"Plushie parent of\",\"@SnowballTheBun@plushies.social\"],[\"Twitch\",\"https://www.twitch.tv/twitchplacidcat\"]]}","created_at":1759430260,"id":"ad25cd8582e8b60cc42e4c6c447e151660b6fd2aa732df4ba3ad9f8a9134c7c5","kind":0,"pubkey":"1b3dcd948ebf062fd0ae7c64d0775e724e336a3bf6ce2583f53043cb16979a4a","sig":"cc4cbf3e8d31d8a1d24f918303871407905ff73e0badb8e9d3d1d4193e8ba2e21185aaa56f812bf5c0d7398343b8f6fb07f6e9a73b7bc64366a5799f5da3b4bc","tags":[["proxy","https://fosstodon.org/users/3DPrintingDad","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:38:59.843] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:39:00.507] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","2409e48d3a978dd5a4b06c7998173b777b55e3a +[14:39:00.810] RECV nos.lol:443: 95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee"],["p","8685ebef665338dd6931e2ccdf3c19d9f0e +[14:39:01.051] RECV nos.lol:443: 55068dba1facd0"],["p","9c612f8b770f0e3fd35cdac2bc57fcee85 +[14:39:01.172] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","3316e2d88ff91e1089c75feedcd8baa2258b454 +[14:39:01.414] RECV nos.lol:443: c9469ca7facefad68b"],["p","d1b5ba6da6f2d5836ec49e48c5a2f2e017b576d0ba01828f691115b149572b20"],["p +[14:39:02.502] RECV nos.lol:443: 96e36e962a991dac21731dd45da2ee3fd9265d65f9839c15847 +[14:39:02.623] RECV nos.lol:443: c68e4898719b58ccaa23e3e"],["p","c1fc7771f5fa418fd3ac49221 +[14:39:02.683] RECV nos.lol:443: 8f19b42ccb7a663da8f04cbbf6c08c80d20b1"],["p","b51 +[14:39:03.313] RECV nos.lol:443: e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e03 +[14:39:04.465] SEND nos.lol:443: ["REQ", "pool_1_1759428493", { + "kinds": [1], + "since": 1759428480, + "limit": 10 + }] +[14:39:04.465] SEND nos.lol:443: ["REQ", "pool_2_1759428595", { + "kinds": [0], + "since": 1759428590, + "limit": 10 + }] +[14:39:04.465] SEND nos.lol:443: ["REQ", "pool_3_1759428731", { + "kinds": [3], + "since": 1759428728, + "limit": 10 + }] +[14:39:04.465] SEND nos.lol:443: ["REQ", "pool_4_1759428813", { + "kinds": [10002], + "since": 1759428809, + "limit": 10 + }] +[14:39:04.687] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"\nhttps://blossom.primal.net/3e6a4884e289d738f5ff846b13621ed621a01213347034119bb56402cae3092e.jpg","created_at":1759430342,"id":"172d4fbe179a80c8d24326ae4dd64ca42a26a3ad0c3e14c84ac65cc24dfed1b9","kind":1,"pubkey":"f841f53887491f271d19f2186629e1efe0f430f92c6ddf34ec93bb5cc97775be","sig":"cc0c4618f4ab9c0b92e7a2566c70afcc0922be7c975e3659f34cc8e16a256038085fb2178bf00fe24c6849b251bec012f89d8e58352afe2ac67cb37c938b2efb","tags":[]}] +[14:39:04.747] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Congrats on the collab! 🎉","created_at":1759430339,"id":"fa722282c195b89a30ebda64d8b2d602aabae34bbeb0945227d9c3d35927454b","kind":1,"pubkey":"a10260a2aa2f092d85e2c0b82e95eac5f8c60ea19c68e4898719b58ccaa23e3e","sig":"e8ca026a2cbb4360686ec1597a2b495f4d798b8fdfea14a2cfbd2f77ee81d2ca86e43142b099ac39309be06cc4e972fdf3ae04686ced445dd1183d79d474a0a6","tags":[["e","450f959ac2446f541da6f407cc7c2e3aca40ba27222822d6f0cd2149a7b1206d","","root"],["p","ee85604f8ec6e4e24f8eaf2a624d042ebd431dae448fe11779adcfb6bb78575e"],["p","bac4496fc0d52afb88f9dc06c6afb06b19160e5685b1f016ff895078c7415d3d"],["p","d4da3e3928f360dbcc3171c4c00d0f1a8738bb989ad681a29dc6d5fb8036c86c"],["p","a44dbc9aaa357176a7d4f5c3106846ea096b66de0b50ee39aff54baab6c4bf4b"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"]]}] +[14:39:04.808] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Nice one. Done🙏🏻.","created_at":1759430330,"id":"59d60fc0f612dfd60c10bd3696e4271e1c6c0e268c1967960639688d960ae092","kind":1,"pubkey":"8450399ee088ae9e65a3dd70512bf2e5831d19ff876d772000eb3ea9c2cf03fe","sig":"dfc471b9aaf7d4807f829e3e303681b96c403fc0060a3589e9b2cce57bbe091929f171fc6c19a9672c0a5abf7aeaddea6206f21943e74cad4f886ab67c8e739c","tags":[["alt","A short note: Nice one. Done🙏🏻."],["e","84b98dc857db0f7b74cecef31d093db38ecf7d300facb51026c339e54572b94e","wss://nostr.wine/","root","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68"],["p","deab79dafa1c2be4b4a6d3aca1357b6caa0b744bf46ad529a5ae464288579e68","wss://nostr.wine/"]]}] +[14:39:04.869] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Hey🫵🏻","created_at":1759430327,"id":"f4ad2b296d088164d425cee5b380eac07f7fbb1942020362dc8b68befce859e8","kind":1,"pubkey":"adc14fa3ad590856dd8b80815d367f7c1e6735ad00fd98a86d002fbe9fb535e1","sig":"299f62a838bd0bbd0bedfe0b17848c82210175a24786f7415b5647b1b3d3654b0615617b30e547b362da1de709d3602b47923e8992dd4804741dca6b664181e2","tags":[["e","4af94da72814c1bb1194190789a76180993df556ffb048f25d568dd6fe123c72","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"],["e","6b7f0079d50cd2d8515c257dad93cfeb7d6b790aca4a85054bc2a02cc73cb120","","reply"],["p","5b6ca199068164d917d3f62dc67c11d6e93cd10de76ae9b42f74e61b55414309","","mention"]]}] +[14:39:04.929] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"When just living becomes a chore. 🤣🫂💜","created_at":1759430314,"id":"61f3892795451d3239df5ce50ec08abbca546b8a60112206f83f4d5d134788f1","kind":1,"pubkey":"77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","sig":"6d0221f9a02ad054a1b6dd28308ddc577dabdacfadbe20c902c5c421d7265f1558e188141d297cb82840459bd5f1bfc202feb563a36f881ac744d370d5943799","tags":[["alt","A short note: When just living becomes a chore. 🤣🫂💜"],["e","bc00ac232c7113adbc6abb8ab3a1aa2d861f513a4b3ae82555f94d9a8cbf10f3","wss://bitcoiner.social/","root","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","20b75a49d097c025b85c20b0f56ea9589e2bbeb2282f5b20f605539e75d42f50","wss://bitcoiner.social/","","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7"],["e","1a71d37a963a9b31b066008205f93c556e54c7c01ca66bcbe33a8a2ade861040","wss://relay.damus.io/","reply","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479"],["p","77ce56f89d1228f7ff3743ce1ad1b254857b9008564727ebd5a1f317362f6ca7","wss://nos.lol/"],["p","e096a89eeb90820895a6dfd7f369ec313654e5762e042d59ad06937659351479","wss://nostr.wine/"]]}] +[14:39:04.990] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9lexv35xkpkldhapdc4f9wjy224twswjvepk0qpr4mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmp0a8u94x \nBitcoin Core seem to have done a u-turn and have abandomed their update and will now continue to maintain spam filters. \n\nThanks Brian for giving this topic attention last month, I doubt I would have explored this if it wasnt for you. ✊\nThe more I learned, the more concerned I became. \nThank you Knots for creating knots node and bitcoin core for listening to the community. 🧡","created_at":1759430311,"id":"12a24f135f3b892b65246a50ebaf7fa077881be51dc9f914d47fc2169daa7a05","kind":1,"pubkey":"e7d89379d91c93749864ec83c635aa91d77d88ae27dd5e4bcaf393880d6ecb07","sig":"13dd99575c398dd42f78f8a39602d0f09fca58d50586ea88d471a7947cfdd40945d96ce06f57ed6cf757051f790f8239ec0519b17eb429ed27652d56c8349be0","tags":[["alt","A short note: Fantastic news nostr:nprofile1qqsgmyfuy22uvdeak9le..."],["e","47da3178d8fa67aee29a5814849bbdb64a4ee861376f1ab713a3129f51a7acbe","wss://relay.nostr.band/","root","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"],["p","8d913c2295c6373db17f93323435836fb6fd0b715495d2229555ba0e93321b3c","wss://nostr.bitcoiner.social/"]]}] +[14:39:05.050] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nevent1qgs982g78fjdrajcaxp6c8j0ncxxjlu0x0spmr0tusulfsdfyyfltyspzamhxue69uhhyetvv9ujuurjd9kkzmpwdejhgtcpz4mhxue69uhhyetvv9ujummvv9ejuctswqhsqgqzlv4f7ajleqt9a5ur8w64s0ys9zrl95v54fqcurtvyuu7cfu03vcxckrc","created_at":1759430298,"id":"083f92e7e5e30db3a2c1f68721efbddc72ca598fb9153dc7087717bf50513156","kind":1,"pubkey":"53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592","sig":"e8d113ca442802156b3b0360931b028ecf4e5ba4c5f905423a6c4e611ed4c9853fca82c441e671fcf2e314ce70c9452596dc393a29d9e202664ff8718085faf2","tags":[["q","02fb2a9f765fc8165ed3833bb5583c902887f2d194aa418e0d6c2739ec278f8b","","mention"],["p","53a91e3a64d1f658e983ac1e4f9e0c697f8f33e01d8debe439f4c1a92113f592"],["client","olas","31990:fa984bd7dbb282f07e16e7ae87b26a2a7b9b90b7246a44771f0cf5ae58018f52:1731850618505"]]}] +[14:39:05.111] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"nostr:nprofile1qqsfrjd9ux5hgsg5cmlz6cdwfh5zv2024g8m2t6g9zqf83l8uqm0svspp4mhxue69uhkummn9ekx7mqpr3mhxue69uhkummnw3ezucnfw33k76twv4ezuum0vd5kzmqqzqhqe 😘🔥🤘🤘 \n\n","created_at":1759430297,"id":"f67faf4345bad4bf5ff6e2271b95be194ef3f2b14b46a5940d8ab585e2d1991b","kind":1,"pubkey":"3aaa459b3ef7b353c7b72f8185aa4148c8c2ff70282f6f55dd6cc04ef67ab822","sig":"9cce89eee7c2cb6fe44372cc73f26f4330d605ce4931cca8044ea69ffa154d88ed93164a14af7995b4420acb7f7c2f58cf28f006e6d6c2718aa3eec30a7cab08","tags":[["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832","wss://nos.lol","mention"],["p","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d","wss://relay.primal.net"],["e","b9c3819e1ab857242f998bcbaeb77a17eb05a940cbec17825385bcabdf836740","wss://relay.primal.net","root","7a4ad5b88c15748cb75f627d7d7fdadb5e4b588bde101803c7270107ddb75b8d"]]}] +[14:39:05.171] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"🇫🇷🇪🇺 PROTESTOS NA FRANÇA CONTRA CORTES DE GASTOS\n\nMilhares protestam na França contra cortes de gastos públicos. Macron deve nomear novo governo neste fim de semana.\nhttps://files.catbox.moe/ykcanh.jpg","created_at":1759430286,"id":"3495b48d17c80977159a5be49763d00b55c90a4131abf5d99452751e5c157ccd","kind":1,"pubkey":"2aa531ee0ea9b7649787995d9d728449752b87e7e064a30b7353f07a69ecc700","sig":"8a0ea28226dbe07541fd72dbb94737fc8648391c49aec4ab9317c81055687a2848dbe807d9bb248621c879f8b11e100f1497499424eacaae585e772caaaee9c8","tags":[["image","https://files.catbox.moe/ykcanh.jpg"]]}] +[14:39:05.232] RECV nos.lol:443: ["EVENT","pool_1_1759428493",{"content":"I dont own a guardians hat.\nGo tribe! Bring back chief wahoo\nhttps://i.nostr.build/Qe412WCHeCYCvDgG.jpg","created_at":1759430280,"id":"442ca5441f236c6406e950ea69f2d429a0cc7e8e9465f12e2a738fe715a6112d","kind":1,"pubkey":"8e27ffb5c9bb8cdd0131ade6efa49d56d401b5424d9fdf9a63e074d527b0715c","sig":"a3b1bbb3edbf6ee161d27f64d594b2eb279d9334074f30432e46282c5ec517a5260d5161b80ec21a5146ac1d1db44f88e1a49736961a96421a778358ed4a96e3","tags":[["e","3bd8f1edc300f9a465e84761c03f78685c78cc322f157cb0bce1ecbe66697909","","root"],["e","f5ec3c472d6343298f08fb5f1cbbcaf2536e44c7891225eb1041d80f1342af23"],["e","2f6c4eb99edb947ceb1943498a5ef5350b1fae65b2330e2457d8179271f35a4c","","reply"],["p","fdf993502221e31cd8c163772116da1b194f6a39add584353036959471eeb6af"],["p","ec45c75d6b020ce8d5e04703f5565b2367086eeb7d1953e71ba2d86f694d8d0f"],["p","9607151bd1ad2206c825707f6a583ad9aed12d6367ead626eb24a29387939aae"],["r","https://i.nostr.build/Qe412WCHeCYCvDgG.jpg"],["imeta","url https://i.nostr.build/Qe412WCHeCYCvDgG.jpg","x 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","size 49911","m image/jpeg","dim 783x1174","blurhash ^UD]PQIUx]xaxabb_NWBs.t7j[oL?bNGS2RjR*WBtRaejFRjWBWBaexuRQofWBofjsf+R+WBs:oeRjj[ayV[ofayV@j@oLjZa|oekCRjt7j[aykB","ox 7a64dd04415f244e199fd97ac681a074d98a9aecb70706499a5652dff55e7d8c","alt "]]}] +[14:39:05.292] RECV nos.lol:443: ["EOSE","pool_1_1759428493"] +[14:39:05.353] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"picture\":\"\",\"name\":\"\",\"nip05\":\"\",\"banner\":\"https:\\/\\/m.primal.net\\/HQTd.jpg\",\"lud16\":\"\",\"about\":\"\",\"website\":\"\",\"display_name\":\"UncleHas11\"}","created_at":1759430339,"id":"225871e9aecdb03f3f5494f31c7327673248972b23a3442d2d70aba465f017fb","kind":0,"pubkey":"381a33ad1daa7c3a0b927527a94504130f471aa99a992aec7ec1d2e785995760","sig":"1874a58bf77ecfb7647264dd9938666e866f45733efdf328817c925ee396318ebb6c29f305cb684ca63c33a5acb7bcc51a5ebd724e076b95a4ca14c6c663de13","tags":[]}] +[14:39:05.414] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"21SatStreet\",\"lud16\":\"purplemoose18@primal.net\",\"display_name\":\"\"}","created_at":1759430314,"id":"164b00bcf8bc63b67425096e9dba4986c199bc6bb17cb4326acd6a38a35bfa57","kind":0,"pubkey":"49107f47564924ae338cb54dc09fff863d72742133a701c2c40a8a34f8e5b5cd","sig":"d887ab459561618135ac914f170b15cde9662738b6f6b5a5d966e53070c66fb5abd7da8d0a04f83e2dd55343b7909e4413b55eef3af4a94571ea0f1c72a9e9f7","tags":[]}] +[14:39:05.474] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"41402-nyan\",\"about\":\"English: rwx\\nRussian: rwx\\nKazakh: r--\\nI'm dude. Born in 1997. Currently maintaining Xash3D FWGS game engine. he/him/any\\nAvatar :src: https://www.bilibili.com/opus/1112401013643411465\\nFollow requests are subject of a vibe Czech.\",\"picture\":\"https://media.suya.place/media/7a276c7d2db6c497921c78479c229bde1b4ba45acf3d152a27e420db30310bbc.jpg\",\"banner\":\"https://suya.place/media/3698a7db091083b9227ea976c990255b69f20e0f978a57ee15e77342064533fb.gif\",\"nip05\":\"a1ba@suya-place.mostr.pub\",\"fields\":[[\"Lockedposting \",\"@a1ba@pleromashit.nexus\"],[\"Xashposting\",\"@a1ba@idtech.space \"],[\"GPG\",\"https://share.mentality.rip/pub/a1ba.gpg\"],[\"GPG fingerprint\",\"D7CF2696DD8C157F32D1F46515B44538C9C71CD0\"]]}","created_at":1759430302,"id":"07f40fe53cd1079acf6361b3d48b7e338a5194cb08ef3fb7e255adbafa1e6ba4","kind":0,"pubkey":"288059249d3068d2994e16ca1aa07ec4db75f434042952e536305c8ea1ce16a9","sig":"55c0d9cdc88ad0db43e8bed19805816a0d92110aa8f9aa54882a8c56dcdf1e3bb18565fe3640aad2440881190b8ad95186d999eb98dd8c07e4fc003abd10fe37","tags":[["emoji","src","https://suya.place/emoji/custom/source.jpg"],["proxy","https://suya.place/users/a1ba","activitypub"],["client","Mostr","31990:6be38f8c63df7dbf84db7ec4a6e6fbbd8d19dca3b980efad18585c46f04b26f9:mostr","wss://relay.mostr.pub"]]}] +[14:39:05.535] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_ord\",\"display_name\":\"AirportStatusBot (ORD)\",\"about\":\"This is a social media bot that will post delay information for Chicago O'Hare International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"d4b34185bbe124e7d06ebe378124f1ff96a6f48eb273fd5b40c71fe7d8bd1889","kind":0,"pubkey":"78daf7c1b4007c7ef80d89252f4afd9e290d52ae55807f4065a704359663c620","sig":"e3c086030d8f7282443310c7abe30c2f0bc1126501f00186994818755687f0822bec0d88c1b6e0dad736f57ce8b951a12a9ea6e2863050dae1f7194ada8ae966","tags":[]}] +[14:39:05.595] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_atl\",\"display_name\":\"AirportStatusBot (ATL)\",\"about\":\"This is a social media bot that will post delay information for Atlanta Hartsfield-Jackson International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"ef362ef7c20c5ae255795a869fccba8de6898d892af7b011d252c0c628422423","kind":0,"pubkey":"eafef7ceb365bb4fa98f24c49163d46f17045bc42120e042b3372be3422b960b","sig":"e878b1d697cf390a11fa94a88d9571065b37bb88e0ec5aa673bbb43e64d3c752a0f85bdf2a785848dd4ba77d26868bb4f6365e2766163c96fcbc4bc6a308e866","tags":[]}] +[14:39:05.656] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_den\",\"display_name\":\"AirportStatusBot (DEN)\",\"about\":\"This is a social media bot that will post delay information for Denver International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"07d3a1450f894d4ff035fa11d2faf68cb8849e622a1b0cf622638f6b55857672","kind":0,"pubkey":"6e66f79b69b1831a25755b825689d37e9d5cbd68b77546cb80803ad8232e850a","sig":"8002faf42fd916c4f6650f80f7ab94ecb393da5c026da9321959fa50473d90076e2e0787812df10ee7f17aaa994f644bdc1f9d7bed5e53d51f41b5008eca64ef","tags":[]}] +[14:39:05.716] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_lax\",\"display_name\":\"AirportStatusBot (LAX)\",\"about\":\"This is a social media bot that will post delay information for Los Angeles International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"8a68a5cb3d417b8183f722add020210feaaaa78b0c848f57ac1579a1b11b5995","kind":0,"pubkey":"ff4cf7c72c73c106237c84501f7c53c8a46c986c8129852c73ad620ed69f43c2","sig":"55f657d4c1d722af988f5e893f2cf77aec4afcc2e585d723fcfc1ce85018c705897ad6ea3991eaa320f7f061990d7ef62c1229b4fdc9a4bca0ce9881f43bd3e5","tags":[]}] +[14:39:05.777] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_dfw\",\"display_name\":\"AirportStatusBot (DFW)\",\"about\":\"This is a social media bot that will post delay information for Dallas/Fort Worth International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"c00accc6c9b933e913a80ef89a40ec3ed3e311a9aecb5f3340cd93b0df736825","kind":0,"pubkey":"6a5cf7b9d9d517ba601021d29a0c038f6f65ba74deb744a5d1ac267a4adf997a","sig":"0bae81e0cda6da003dd69de745e1bc53359481df74f7379ec4ebe346952efd36112eab5feb6af6a7ca5f0cc285904ad6ed46785916560fe847160e0669e85ec3","tags":[]}] +[14:39:05.837] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot_mia\",\"display_name\":\"AirportStatusBot (MIA)\",\"about\":\"This is a social media bot that will post delay information for Miami International Airport.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"4c818b7aa178985ffb1bba8a62c2597dd17447c1d26b63eca08b5f8cdc0c4177","kind":0,"pubkey":"7bdef7ec5d89f783b28d48cfbb1b5648113bb2d6bc7251d97e196d029f3967fb","sig":"a9867b9f3c36562e3c442e36f939c5b88310712c9c930b0c06144cd75b0434f7154fd1fd40d29e6b94a9b8c1a34cb3cfc8b60cdbea7a9b01dc3637e93d57f185","tags":[]}] +[14:39:05.898] RECV nos.lol:443: ["EVENT","pool_2_1759428595",{"content":"{\"name\":\"airportstatusbot\",\"display_name\":\"AirportStatusBot\",\"about\":\"This is a social media bot that will post delay information for airports in the United States.\\n\\nFollow the creator nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569\\n\\nPlease note: this account is rarely monitored. Please contact nostr:npub16amr0pgqzl8l57npcupjmv8j3055042g07w4qj4tu3zf4yd48nlsh96569 instead.\",\"picture\":\"https://charlie.fish/projects/airportstatusbot/assets/images/logo.png\",\"website\":\"https://github.com/fishcharlie/AirportStatusBot\"}","created_at":1759430289,"id":"b55632a33e6cf8c2850eeeac816f19e23f09add70dc1e87026539b813c51f2ed","kind":0,"pubkey":"9887797d06372fa7aa79950328e0754277ee748efa2222204c713ac03f1a5a81","sig":"f6484554cb4de723e4c020d11f9beb2659db7805345b24fbcbad52492ee3ce6f5c31aa056a36b1504ef05ec75ad4e6889f6b41481001427c2f4051d937ae4aa1","tags":[]}] +[14:39:05.959] RECV nos.lol:443: ["EOSE","pool_2_1759428595"] +[14:39:06.019] RECV nos.lol:443: ["EVENT","pool_3_1759428731",{"content":"","created_at":1759430339,"id":"94ddacc63d0aae6fff0e46dac805b6bda7b7845ef058c9132cc28dc2e409db8e","kind":3,"pubkey":"381a33ad1daa7c3a0b927527a94504130f471aa99a992aec7ec1d2e785995760","sig":"0e9ae6eac2590b3afeb45e791802d01a2ba70b74ff9640275249fb28bd9ee2c394a05501fbf3c31345a2825f3d39c92c2bcea456438168ef027789388ab30a32","tags":[["p","8967f290cc7749fd3d232fb7110c05db746a31fce0635aeec4e111ad8bfc810d"],["p","b99dbca0184a32ce55904cb267b22e434823c97f418f36daf5d2dff0dd7b5c27"],["p","aa55a479ad6934d0fd78f3dbd88515cd1ca0d7a110812e711380d59df7598935"],["p","04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9"],["p","c037a6897df86bfd4df5496ca7e2318992b4766897fb18fbd1d347a4f4459f5e"],["p","1b11ed41e815234599a52050a6a40c79bdd3bfa3d65e5d4a2c8d626698835d6d"],["p","eab0e756d32b80bcd464f3d844b8040303075a13eabc3599a762c9ac7ab91f4f"],["p","a4cb51f4618cfcd16b2d3171c466179bed8e197c43b8598823b04de266cef110"],["p","be7a5291b532e8b918f2dc98148948a33d3e0da07788d7416f73b4c7514f08e6"],["p","60a5cb046a60cc042b65047a52e901118e0b2d075327f2cbe60fba5275d37193"],["p","b7996c183e036df27802945b80bbdc8b0bf5971b6621a86bf3569c332117f07d"],["p","7b3f7803750746f455413a221f80965eecb69ef308f2ead1da89cc2c8912e968"],["p","c48b5cced5ada74db078df6b00fa53fc1139d73bf0ed16de325d52220211dbd5"],["p","f728d9e6e7048358e70930f5ca64b097770d989ccd86854fe618eda9c8a38106"],["p","e1055729d51e037b3c14e8c56e2c79c22183385d94aadb32e5dc88092cd0fef4"],["p","b9e76546ba06456ed301d9e52bc49fa48e70a6bf2282be7a1ae72947612023dc"],["p","148d1366a5e4672b1321adf00321778f86a2371a4bdbe99133f28df0b3d32fa1"],["p","609f26f32212f80b7314e578c18243b0df5aa6f0f3f8bea72b53fa2463a474db"],["p","4379e76bfa76a80b8db9ea759211d90bb3e67b2202f8880cc4f5ffe2065061ad"],["p","4f44ff626cb4761bcba7451261b8ff35b798d798e12474d5aaad8ce9516ae4ca"],["p","aef0d6b212827f3ba1de6189613e6d4824f181f567b1205273c16895fdaf0b23"],["p","bd9eb657c25b4f6cda68871ce26259d1f9bc62420487e3224905b674a710a45a"],["p","175f568d77fb0cb7400f0ddd8aed1738cd797532b314ef053a1669d4dba7433a"],["p","6c535d95a8659b234d5a0805034f5f0a67e3c0ceffcc459f61f680fe944424bf"],["p","fdd5e8f6ae0db817be0b71da20498c1806968d8a6459559c249f322fa73464a7"],["p","b7b51cc25216d4c10bc85ae27055c9a945fe77cafd463cf23b20917e39ce6816"],["p","1baf18ae863cfd815a775c28943d8f4efe7ddbfe9e7bd1da1cddac93b75e2806"],["p","fe7f6bc6f7338b76bbf80db402ade65953e20b2f23e66e898204b63cc42539a3"],["p","e1ff3bfdd4e40315959b08b4fcc8245eaa514637e1d4ec2ae166b743341be1af"],["p","7e0c255fd3d0f9b48789a944baf19bf42c205a9c55199805eb13573b32137488"],["p","eba7c2b111a28fa8e7cb07f1ae0feef490d49d897bd7b1fb5ce5d3f0d6739e8f"],["p","85080d3bad70ccdcd7f74c29a44f55bb85cbcd3dd0cbb957da1d215bdb931204"],["p","c7dccba4fe4426a7b1ea239a5637ba40fab9862c8c86b3330fe65e9f667435f6"],["p","5c3ac592e4b12e62bdc7c975a2407f58484bf9c816d1c299f52f2469142ca38e"],["p","b7ed68b062de6b4a12e51fd5285c1e1e0ed0e5128cda93ab11b4150b55ed32fc"],["p","c9b19ffcd43e6a5f23b3d27106ce19e4ad2df89ba1031dd4617f1b591e108965"],["p","381a33ad1daa7c3a0b927527a94504130f471aa99a992aec7ec1d2e785995760"],["p","d307643547703537dfdef811c3dea96f1f9e84c8249e200353425924a9908cf8"],["p","91c9a5e1a9744114c6fe2d61ae4de82629eaaa0fb52f48288093c7e7e036f832"],["p","50d94fc2d8580c682b071a542f8b1e31a200b0508bab95a33bef0855df281d63"],["p","ea57b25f7a57c61d7dd0bf62411244a580d6709e42a20428fd381f89ef8d63db"],["p","020f2d21ae09bf35fcdfb65decf1478b846f5f728ab30c5eaabcd6d081a81c3e"],["p","fbeb2be7271a14196a8426e78ee4c747706be2424392b036f5fabe44331f55e3"],["p","11b9a89404dbf3034e7e1886ba9dc4c6d376f239a118271bd2ec567a889850ce"],["p","cbc5ef6b01cbd1ffa2cb95a954f04c385a936c1a86e1bb9ccdf2cf0f4ebeaccb"],["p","6c237d8b3b120251c38c230c06d9e48f0d3017657c5b65c8c36112eb15c52aeb"],["p","e88a691e98d9987c964521dff60025f60700378a4879180dcbbb4a5027850411"],["p","6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93"],["p","3d2e51508699f98f0f2bdbe7a45b673c687fe6420f466dc296d90b908d51d594"],["p","5a8e581f16a012e24d2a640152ad562058cb065e1df28e907c1bfa82c150c8ba"],["p","3af187bfe00920d87068a6bcdffc48f4b241d1d82594cd395119a30891041654"],["p","088436cd039ff89074468fd327facf62784eeb37490e0a118ab9f14c9d2646cc"],["p","d61f3bc5b3eb4400efdae6169a5c17cabf3246b514361de939ce4a1a0da6ef4a"],["p","1b5ee74df1f13eb85d54d36bc19a4180f44ce9aceeba2ea110f9ea79bb1aae6e"],["p","472f440f29ef996e92a186b8d320ff180c855903882e59d50de1b8bd5669301e"],["p","2774d83c8f9789c583414292b1192c4345db7ff0d551ea32efa2958f4192f6e5"],["p","19fefd7f39c96d2ff76f87f7627ae79145bc971d8ab23205005939a5a913bc2f"],["p","1afe0c74e3d7784eba93a5e3fa554a6eeb01928d12739ae8ba4832786808e36d"],["p","c4eabae1be3cf657bc1855ee05e69de9f059cb7a059227168b80b89761cbc4e0"],["p","ccaa58e37c99c85bc5e754028a718bd46485e5d3cb3345691ecab83c755d48cc"],["p","edcd20558f17d99327d841e4582f9b006331ac4010806efa020ef0d40078e6da"],["p","83e818dfbeccea56b0f551576b3fd39a7a50e1d8159343500368fa085ccd964b"],["p","4d41a7cbc9b7f7e8484d15499aa9141c73f9a39c3765cc5d5631fa1e7d3633cc"],["p","e33fe65f1fde44c6dc17eeb38fdad0fceaf1cae8722084332ed1e32496291d42"],["p","0d6c8388dcb049b8dd4fc8d3d8c3bb93de3da90ba828e4f09c8ad0f346488a33"],["p","3ebc74907d1f928f209ef210e872cac033eaf3ff89e6853286d45d91e351ef9e"],["p","1989034e56b8f606c724f45a12ce84a11841621aaf7182a1f6564380b9c4276b"],["p","826e9f895b81ab41a4522268b249e68d02ca81608def562a493cee35ffc5c759"]]}] +[14:39:06.685] RECV nos.lol:443: 8f79a4497fe9b77dc977633451f3ca5c634e208659116647b"],["p","2409e48d3a978dd5a4b06c7998173b777b55e3a +[14:39:06.987] RECV nos.lol:443: 95f6f1f75555498f0019be1259a65c75ae851c235f7b15c9f88e0ee"],["p","8685ebef665338dd6931e2ccdf3c19d9f0e +[14:39:07.228] RECV nos.lol:443: 55068dba1facd0"],["p","9c612f8b770f0e3fd35cdac2bc57fcee85 +[14:39:07.349] RECV nos.lol:443: cd2ba7f1ef90aad961cf074af15b9ef44a09f9d2a8fbfbe6a2"],["p","3316e2d88ff91e1089c75feedcd8baa2258b454 +[14:39:07.591] RECV nos.lol:443: c9469ca7facefad68b"],["p","d1b5ba6da6f2d5836ec49e48c5a2f2e017b576d0ba01828f691115b149572b20"],["p +[14:39:08.643] RECV nos.lol:443: 96e36e962a991dac21731dd45da2ee3fd9265d65f9839c15847 +[14:39:08.763] RECV nos.lol:443: c68e4898719b58ccaa23e3e"],["p","c1fc7771f5fa418fd3ac49221 +[14:39:08.824] RECV nos.lol:443: 8f19b42ccb7a663da8f04cbbf6c08c80d20b1"],["p","b51 diff --git a/dev_build.sh b/dev_build.sh deleted file mode 100755 index d5ef46da..00000000 --- a/dev_build.sh +++ /dev/null @@ -1,394 +0,0 @@ -#!/bin/bash - -# NOSTR Core Library Build Script -# Provides convenient build targets for the standalone library -# Automatically increments patch version with each build - -set -e # Exit on any error - -# Colors for output -RED='\033[0;31m' -GREEN='\033[0;32m' -YELLOW='\033[1;33m' -BLUE='\033[0;34m' -NC='\033[0m' # No Color - -# Function to print colored output -print_status() { - echo -e "${BLUE}[INFO]${NC} $1" -} - -print_success() { - echo -e "${GREEN}[SUCCESS]${NC} $1" -} - -print_warning() { - echo -e "${YELLOW}[WARNING]${NC} $1" -} - -print_error() { - echo -e "${RED}[ERROR]${NC} $1" -} - -# Function to automatically increment version -increment_version() { - print_status "Incrementing version..." - - # Check if we're in a git repository - if ! git rev-parse --git-dir > /dev/null 2>&1; then - print_warning "Not in a git repository - skipping version increment" - return 0 - fi - - # Get the highest version tag (not necessarily the most recent chronologically) - LATEST_TAG=$(git tag -l 'v*.*.*' | sort -V | tail -n 1 || echo "v0.1.0") - if [[ -z "$LATEST_TAG" ]]; then - LATEST_TAG="v0.1.0" - fi - - # Extract version components (remove 'v' prefix if present) - VERSION=${LATEST_TAG#v} - - # Parse major.minor.patch - if [[ $VERSION =~ ^([0-9]+)\.([0-9]+)\.([0-9]+)$ ]]; then - MAJOR=${BASH_REMATCH[1]} - MINOR=${BASH_REMATCH[2]} - PATCH=${BASH_REMATCH[3]} - else - print_error "Invalid version format in tag: $LATEST_TAG" - print_error "Expected format: v0.1.0" - return 1 - fi - - # Increment patch version - NEW_PATCH=$((PATCH + 1)) - NEW_VERSION="v${MAJOR}.${MINOR}.${NEW_PATCH}" - - print_status "Current version: $LATEST_TAG" - print_status "New version: $NEW_VERSION" - - # Create new git tag - if git tag "$NEW_VERSION" 2>/dev/null; then - print_success "Created new version tag: $NEW_VERSION" - else - print_warning "Tag $NEW_VERSION already exists - using existing version" - NEW_VERSION=$LATEST_TAG - fi - - # Update VERSION file for compatibility - echo "${NEW_VERSION#v}" > VERSION - print_success "Updated VERSION file to ${NEW_VERSION#v}" -} - -# Function to perform git operations after successful build -perform_git_operations() { - local commit_message="$1" - - if [[ -z "$commit_message" ]]; then - return 0 # No commit message provided, skip git operations - fi - - print_status "Performing git operations..." - - # Check if we're in a git repository - if ! git rev-parse --git-dir > /dev/null 2>&1; then - print_warning "Not in a git repository - skipping git operations" - return 0 - fi - - # Check if there are changes to commit - if git diff --quiet && git diff --cached --quiet; then - print_warning "No changes to commit" - return 0 - fi - - # Add all changes - print_status "Adding changes to git..." - if ! git add .; then - print_error "Failed to add changes to git" - return 1 - fi - - # Commit changes - print_status "Committing changes with message: '$commit_message'" - if ! git commit -m "$commit_message"; then - print_error "Failed to commit changes" - return 1 - fi - - # Push changes - print_status "Pushing changes to remote repository..." - if ! git push; then - print_error "Failed to push changes to remote repository" - print_warning "Changes have been committed locally but not pushed" - return 1 - fi - - print_success "Git operations completed successfully!" - return 0 -} - -# Function to show usage -show_usage() { - echo "NOSTR Core Library Build Script" - echo "===============================" - echo "" - echo "Usage: $0 [target] [-m \"commit message\"]" - echo "" - echo "Available targets:" - echo " clean - Clean all build artifacts" - echo " lib - Build static libraries for both x64 and ARM64 (default)" - echo " x64 - Build x64 static library only" - echo " arm64 - Build ARM64 static library only" - echo " all - Build both architectures and examples" - echo " examples - Build example programs" - echo " test - Run tests" - echo " install - Install library to system" - echo " uninstall - Remove library from system" - echo " help - Show this help message" - echo "" - echo "Options:" - echo " -m \"message\" - Git commit message (triggers automatic git add, commit, push after successful build)" - echo "" - echo "Examples:" - echo " $0 lib -m \"Add new proof-of-work parameters\"" - echo " $0 x64 -m \"Fix OpenSSL minimal build configuration\"" - echo " $0 lib # Build without git operations" - echo "" - echo "Library outputs (both self-contained with secp256k1):" - echo " libnostr_core.a - x86_64 static library" - echo " libnostr_core_arm64.a - ARM64 static library" - echo " examples/* - Example programs" - echo "" - echo "Both libraries include secp256k1 objects internally." - echo "Users only need to link with the library + -lm." -} - -# Parse command line arguments -TARGET="" -COMMIT_MESSAGE="" - -# Parse arguments -while [[ $# -gt 0 ]]; do - case $1 in - -m) - COMMIT_MESSAGE="$2" - shift 2 - ;; - -*) - print_error "Unknown option: $1" - show_usage - exit 1 - ;; - *) - if [[ -z "$TARGET" ]]; then - TARGET="$1" - else - print_error "Multiple targets specified: $TARGET and $1" - show_usage - exit 1 - fi - shift - ;; - esac -done - -# Set default target if none specified -TARGET=${TARGET:-lib} - -case "$TARGET" in - clean) - print_status "Cleaning build artifacts..." - make clean - print_success "Clean completed" - ;; - - lib|library) - increment_version - print_status "Building both x64 and ARM64 static libraries..." - make clean - make - - # Check both libraries were built - SUCCESS=0 - if [ -f "libnostr_core.a" ]; then - SIZE_X64=$(stat -c%s "libnostr_core.a") - print_success "x64 static library built successfully (${SIZE_X64} bytes)" - SUCCESS=$((SUCCESS + 1)) - else - print_error "Failed to build x64 static library" - fi - - if [ -f "libnostr_core_arm64.a" ]; then - SIZE_ARM64=$(stat -c%s "libnostr_core_arm64.a") - print_success "ARM64 static library built successfully (${SIZE_ARM64} bytes)" - SUCCESS=$((SUCCESS + 1)) - else - print_error "Failed to build ARM64 static library" - fi - - if [ $SUCCESS -eq 2 ]; then - print_success "Both architectures built successfully!" - ls -la libnostr_core*.a - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build all libraries" - exit 1 - fi - ;; - - x64|x64-only) - increment_version - print_status "Building x64 static library only..." - make clean - make x64 - if [ -f "libnostr_core.a" ]; then - SIZE=$(stat -c%s "libnostr_core.a") - print_success "x64 static library built successfully (${SIZE} bytes)" - ls -la libnostr_core.a - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build x64 static library" - exit 1 - fi - ;; - - arm64|arm64-only) - increment_version - print_status "Building ARM64 static library only..." - make clean - make arm64 - if [ -f "libnostr_core_arm64.a" ]; then - SIZE=$(stat -c%s "libnostr_core_arm64.a") - print_success "ARM64 static library built successfully (${SIZE} bytes)" - ls -la libnostr_core_arm64.a - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build ARM64 static library" - exit 1 - fi - ;; - - shared) - increment_version - print_status "Building shared library..." - make clean - make libnostr_core.so - if [ -f "libnostr_core.so" ]; then - SIZE=$(stat -c%s "libnostr_core.so") - print_success "Shared library built successfully (${SIZE} bytes)" - ls -la libnostr_core.so - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build shared library" - exit 1 - fi - ;; - - all) - increment_version - print_status "Building all libraries and examples..." - make clean - make all - - # Check both libraries and examples were built - SUCCESS=0 - if [ -f "libnostr_core.a" ]; then - SIZE_X64=$(stat -c%s "libnostr_core.a") - print_success "x64 static library built successfully (${SIZE_X64} bytes)" - SUCCESS=$((SUCCESS + 1)) - else - print_error "Failed to build x64 static library" - fi - - if [ -f "libnostr_core_arm64.a" ]; then - SIZE_ARM64=$(stat -c%s "libnostr_core_arm64.a") - print_success "ARM64 static library built successfully (${SIZE_ARM64} bytes)" - SUCCESS=$((SUCCESS + 1)) - else - print_error "Failed to build ARM64 static library" - fi - - if [ $SUCCESS -eq 2 ]; then - print_success "All libraries and examples built successfully!" - ls -la libnostr_core*.a - ls -la examples/ - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build all components" - exit 1 - fi - ;; - - examples) - increment_version - print_status "Building both libraries and examples..." - make clean - make - make examples - - # Verify libraries were built - if [ -f "libnostr_core.a" ] && [ -f "libnostr_core_arm64.a" ]; then - print_success "Both libraries and examples built successfully" - ls -la libnostr_core*.a - ls -la examples/ - perform_git_operations "$COMMIT_MESSAGE" - else - print_error "Failed to build libraries for examples" - exit 1 - fi - ;; - - test) - print_status "Running tests..." - make clean - make - if make test-crypto 2>/dev/null; then - print_success "All tests passed" - else - print_warning "Running simple test instead..." - make test - print_success "Basic test completed" - fi - ;; - - tests) - print_status "Running tests..." - make clean - make - if make test-crypto 2>/dev/null; then - print_success "All tests passed" - else - print_warning "Running simple test instead..." - make test - print_success "Basic test completed" - fi - ;; - - install) - increment_version - print_status "Installing library to system..." - make clean - make all - sudo make install - print_success "Library installed to /usr/local" - perform_git_operations "$COMMIT_MESSAGE" - ;; - - uninstall) - print_status "Uninstalling library from system..." - sudo make uninstall - print_success "Library uninstalled" - ;; - - help|--help|-h) - show_usage - ;; - - *) - print_error "Unknown target: $TARGET" - echo "" - show_usage - exit 1 - ;; -esac diff --git a/increment_and_push.sh b/increment_and_push.sh new file mode 100755 index 00000000..41382887 --- /dev/null +++ b/increment_and_push.sh @@ -0,0 +1,150 @@ +#!/bin/bash + +# increment_and_push.sh - Version increment and git automation script +# Usage: ./increment_and_push.sh "meaningful git comment" + +set -e # Exit on error + +# Color constants +RED='\033[31m' +GREEN='\033[32m' +YELLOW='\033[33m' +BLUE='\033[34m' +BOLD='\033[1m' +RESET='\033[0m' + +# Function to print output with colors +print_info() { + if [ "$USE_COLORS" = true ]; then + echo -e "${BLUE}[INFO]${RESET} $1" + else + echo "[INFO] $1" + fi +} + +print_success() { + if [ "$USE_COLORS" = true ]; then + echo -e "${GREEN}${BOLD}[SUCCESS]${RESET} $1" + else + echo "[SUCCESS] $1" + fi +} + +print_warning() { + if [ "$USE_COLORS" = true ]; then + echo -e "${YELLOW}[WARNING]${RESET} $1" + else + echo "[WARNING] $1" + fi +} + +print_error() { + if [ "$USE_COLORS" = true ]; then + echo -e "${RED}${BOLD}[ERROR]${RESET} $1" + else + echo "[ERROR] $1" + fi +} + +# Check if we're in the correct directory +CURRENT_DIR=$(basename "$(pwd)") +if [ "$CURRENT_DIR" != "nostr_core_lib" ]; then + print_error "Script must be run from the nostr_core_lib directory" + echo "" + echo "Current directory: $CURRENT_DIR" + echo "Expected directory: nostr_core_lib" + echo "" + echo "Please change to the nostr_core_lib directory first." + echo "" + exit 1 +fi + +# Check if git repository exists +if ! git rev-parse --git-dir > /dev/null 2>&1; then + print_error "Not a git repository. Please initialize git first." + exit 1 +fi + +# Check if we have a commit message +if [ $# -eq 0 ]; then + print_error "Usage: $0 \"meaningful git comment\"" + echo "" + echo "Example: $0 \"Add enhanced subscription functionality\"" + echo "" + exit 1 +fi + +COMMIT_MESSAGE="$1" + +# Check if nostr_core.h exists +if [ ! -f "nostr_core/nostr_core.h" ]; then + print_error "nostr_core/nostr_core.h not found" + exit 1 +fi + +print_info "Starting version increment and push process..." + +# Extract current version from nostr_core.h +CURRENT_VERSION=$(grep '#define VERSION ' nostr_core/nostr_core.h | cut -d'"' -f2) +if [ -z "$CURRENT_VERSION" ]; then + print_error "Could not find VERSION define in nostr_core.h" + exit 1 +fi + +# Extract version components +VERSION_MAJOR=$(grep '#define VERSION_MAJOR ' nostr_core/nostr_core.h | awk '{print $3}') +VERSION_MINOR=$(grep '#define VERSION_MINOR ' nostr_core/nostr_core.h | awk '{print $3}') +VERSION_PATCH=$(grep '#define VERSION_PATCH ' nostr_core/nostr_core.h | awk '{print $3}') + +if [ -z "$VERSION_MAJOR" ] || [ -z "$VERSION_MINOR" ] || [ -z "$VERSION_PATCH" ]; then + print_error "Could not extract version components from nostr_core.h" + exit 1 +fi + +print_info "Current version: $CURRENT_VERSION (Major: $VERSION_MAJOR, Minor: $VERSION_MINOR, Patch: $VERSION_PATCH)" + +# Increment patch version +NEW_PATCH=$((VERSION_PATCH + 1)) +NEW_VERSION="v$VERSION_MAJOR.$VERSION_MINOR.$NEW_PATCH" + +print_info "New version will be: $NEW_VERSION" + +# Update version in nostr_core.h +sed -i "s/#define VERSION .*/#define VERSION \"$NEW_VERSION\"/" nostr_core/nostr_core.h +sed -i "s/#define VERSION_PATCH .*/#define VERSION_PATCH $NEW_PATCH/" nostr_core/nostr_core.h + +print_success "Updated version in nostr_core.h" + +# Check if VERSION file exists and update it +if [ -f "VERSION" ]; then + echo "$VERSION_MAJOR.$VERSION_MINOR.$NEW_PATCH" > VERSION + print_success "Updated VERSION file" +fi + +# Check git status +if ! git diff --quiet; then + print_info "Adding changes to git..." + git add . + + print_info "Committing changes..." + git commit -m "$COMMIT_MESSAGE" + + print_success "Changes committed" +else + print_warning "No changes to commit" +fi + +# Create and push git tag +print_info "Creating git tag: $NEW_VERSION" +git tag "$NEW_VERSION" + +print_info "Pushing commits and tags..." +git push origin main +git push origin "$NEW_VERSION" + +print_success "Version $NEW_VERSION successfully released!" +print_info "Git commit: $COMMIT_MESSAGE" +print_info "Tag: $NEW_VERSION" + +echo "" +echo "🎉 Release complete! Version $NEW_VERSION is now live." \ No newline at end of file diff --git a/nostr_core/core_relay_pool.c b/nostr_core/core_relay_pool.c index be9b446d..5b875cb8 100644 --- a/nostr_core/core_relay_pool.c +++ b/nostr_core/core_relay_pool.c @@ -100,12 +100,27 @@ struct nostr_pool_subscription { // Callbacks void (*on_event)(cJSON* event, const char* relay_url, void* user_data); - void (*on_eose)(void* user_data); + void (*on_eose)(cJSON** events, int event_count, void* user_data); void* user_data; int closed; int close_on_eose; // Auto-close subscription when all relays send EOSE nostr_relay_pool_t* pool; // Back reference to pool + + // New subscription control parameters + int enable_deduplication; // Per-subscription deduplication control + nostr_pool_eose_result_mode_t result_mode; // EOSE result selection mode + int relay_timeout_seconds; // Timeout for individual relay operations + int eose_timeout_seconds; // Timeout for waiting for EOSE completion + time_t subscription_start_time; // When subscription was created + + // Event collection for EOSE result modes + cJSON** collected_events; + int collected_event_count; + int collected_events_capacity; + + // Per-relay timeout tracking + time_t* relay_last_activity; // Last activity time per relay }; struct nostr_relay_pool { @@ -544,9 +559,13 @@ nostr_pool_subscription_t* nostr_relay_pool_subscribe( int relay_count, cJSON* filter, void (*on_event)(cJSON* event, const char* relay_url, void* user_data), - void (*on_eose)(void* user_data), + void (*on_eose)(cJSON** events, int event_count, void* user_data), void* user_data, - int close_on_eose) { + int close_on_eose, + int enable_deduplication, + nostr_pool_eose_result_mode_t result_mode, + int relay_timeout_seconds, + int eose_timeout_seconds) { if (!pool || !relay_urls || relay_count <= 0 || !filter || pool->subscription_count >= NOSTR_POOL_MAX_SUBSCRIPTIONS) { @@ -603,6 +622,55 @@ nostr_pool_subscription_t* nostr_relay_pool_subscribe( sub->closed = 0; sub->close_on_eose = close_on_eose; sub->pool = pool; + + // Set new subscription control parameters + sub->enable_deduplication = enable_deduplication; + sub->result_mode = result_mode; + sub->relay_timeout_seconds = relay_timeout_seconds; + sub->eose_timeout_seconds = eose_timeout_seconds; + sub->subscription_start_time = time(NULL); + + // Initialize event collection arrays (only for EOSE result modes) + if (result_mode != NOSTR_POOL_EOSE_FIRST) { + sub->collected_events_capacity = 10; // Initial capacity + sub->collected_events = calloc(sub->collected_events_capacity, sizeof(cJSON*)); + if (!sub->collected_events) { + // Cleanup on failure + cJSON_Delete(sub->filter); + for (int j = 0; j < relay_count; j++) { + free(sub->relay_urls[j]); + } + free(sub->relay_urls); + free(sub->eose_received); + free(sub); + return NULL; + } + sub->collected_event_count = 0; + } else { + sub->collected_events = NULL; + sub->collected_event_count = 0; + sub->collected_events_capacity = 0; + } + + // Initialize per-relay activity tracking + sub->relay_last_activity = calloc(relay_count, sizeof(time_t)); + if (!sub->relay_last_activity) { + // Cleanup on failure + if (sub->collected_events) free(sub->collected_events); + cJSON_Delete(sub->filter); + for (int j = 0; j < relay_count; j++) { + free(sub->relay_urls[j]); + } + free(sub->relay_urls); + free(sub->eose_received); + free(sub); + return NULL; + } + // Initialize all relay activity times to current time + time_t now = time(NULL); + for (int i = 0; i < relay_count; i++) { + sub->relay_last_activity[i] = now; + } // Add to pool pool->subscriptions[pool->subscription_count++] = sub; @@ -700,43 +768,56 @@ static void process_relay_message(nostr_relay_pool_t* pool, relay_connection_t* if (event_id_json && cJSON_IsString(event_id_json)) { const char* event_id = cJSON_GetStringValue(event_id_json); - // Check for duplicate - if (!is_event_seen(pool, event_id)) { - mark_event_seen(pool, event_id); - relay->stats.events_received++; - - // Measure query latency (first event response) - double latency_ms = remove_subscription_timing(relay, subscription_id); - if (latency_ms > 0.0) { - // Update query latency statistics - if (relay->stats.query_samples == 0) { - relay->stats.query_latency_avg = latency_ms; - relay->stats.query_latency_min = latency_ms; - relay->stats.query_latency_max = latency_ms; - } else { - relay->stats.query_latency_avg = - (relay->stats.query_latency_avg * relay->stats.query_samples + latency_ms) / - (relay->stats.query_samples + 1); - - if (latency_ms < relay->stats.query_latency_min) { - relay->stats.query_latency_min = latency_ms; - } - if (latency_ms > relay->stats.query_latency_max) { - relay->stats.query_latency_max = latency_ms; - } - } - relay->stats.query_samples++; + // Find subscription first + nostr_pool_subscription_t* sub = NULL; + for (int i = 0; i < pool->subscription_count; i++) { + if (pool->subscriptions[i] && !pool->subscriptions[i]->closed && + strcmp(pool->subscriptions[i]->subscription_id, subscription_id) == 0) { + sub = pool->subscriptions[i]; + break; } - - // Find subscription and call callback - for (int i = 0; i < pool->subscription_count; i++) { - nostr_pool_subscription_t* sub = pool->subscriptions[i]; - if (sub && !sub->closed && - strcmp(sub->subscription_id, subscription_id) == 0) { - if (sub->on_event) { - sub->on_event(event, relay->url, sub->user_data); + } + + if (sub) { + // Check for duplicate (per-subscription deduplication) + int is_duplicate = 0; + if (sub->enable_deduplication) { + if (is_event_seen(pool, event_id)) { + is_duplicate = 1; + } else { + mark_event_seen(pool, event_id); + } + } + + if (!is_duplicate) { + relay->stats.events_received++; + + // Measure query latency (first event response) + double latency_ms = remove_subscription_timing(relay, subscription_id); + if (latency_ms > 0.0) { + // Update query latency statistics + if (relay->stats.query_samples == 0) { + relay->stats.query_latency_avg = latency_ms; + relay->stats.query_latency_min = latency_ms; + relay->stats.query_latency_max = latency_ms; + } else { + relay->stats.query_latency_avg = + (relay->stats.query_latency_avg * relay->stats.query_samples + latency_ms) / + (relay->stats.query_samples + 1); + + if (latency_ms < relay->stats.query_latency_min) { + relay->stats.query_latency_min = latency_ms; + } + if (latency_ms > relay->stats.query_latency_max) { + relay->stats.query_latency_max = latency_ms; + } } - break; + relay->stats.query_samples++; + } + + // Call event callback + if (sub->on_event) { + sub->on_event(event, relay->url, sub->user_data); } } } @@ -776,7 +857,14 @@ static void process_relay_message(nostr_relay_pool_t* pool, relay_connection_t* if (all_eose) { if (sub->on_eose) { - sub->on_eose(sub->user_data); + // Pass collected events based on result mode + if (sub->result_mode == NOSTR_POOL_EOSE_FIRST) { + // FIRST mode: no events collected, pass NULL/0 + sub->on_eose(NULL, 0, sub->user_data); + } else { + // FULL_SET or MOST_RECENT: pass collected events + sub->on_eose(sub->collected_events, sub->collected_event_count, sub->user_data); + } } // Auto-close subscription if close_on_eose is enabled diff --git a/nostr_core/nostr_core.h b/nostr_core/nostr_core.h index 860fb2ba..eec23309 100644 --- a/nostr_core/nostr_core.h +++ b/nostr_core/nostr_core.h @@ -1,6 +1,12 @@ #ifndef NOSTR_CORE_H #define NOSTR_CORE_H +// Version information (auto-updated by increment_and_push.sh) +#define VERSION "v0.4.3" +#define VERSION_MAJOR 0 +#define VERSION_MINOR 4 +#define VERSION_PATCH 3 + /* * NOSTR Core Library - Complete API Reference * @@ -159,6 +165,13 @@ typedef enum { NOSTR_POOL_RELAY_ERROR = -1 } nostr_pool_relay_status_t; +// EOSE result mode for subscriptions +typedef enum { + NOSTR_POOL_EOSE_FULL_SET, // Wait for all relays, return all events + NOSTR_POOL_EOSE_MOST_RECENT, // Wait for all relays, return most recent event + NOSTR_POOL_EOSE_FIRST // Return results on first EOSE (fastest response) +} nostr_pool_eose_result_mode_t; + typedef struct { int connection_attempts; int connection_failures; @@ -204,6 +217,22 @@ void nostr_relay_pool_destroy(nostr_relay_pool_t* pool); // Subscription management 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)(cJSON** events, int event_count, void* user_data), + void* user_data, + int close_on_eose, + int enable_deduplication, + nostr_pool_eose_result_mode_t result_mode, + int relay_timeout_seconds, + int eose_timeout_seconds); +int nostr_pool_subscription_close(nostr_pool_subscription_t* subscription); + +// Backward compatibility wrapper +nostr_pool_subscription_t* nostr_relay_pool_subscribe_compat( nostr_relay_pool_t* pool, const char** relay_urls, int relay_count, @@ -212,7 +241,6 @@ nostr_pool_subscription_t* nostr_relay_pool_subscribe( void (*on_eose)(void* user_data), void* user_data, int close_on_eose); -int nostr_pool_subscription_close(nostr_pool_subscription_t* subscription); // Event loop functions int nostr_relay_pool_run(nostr_relay_pool_t* pool, int timeout_ms); diff --git a/pool.log b/pool.log index 13a9cfc8..48a2c505 100644 --- a/pool.log +++ b/pool.log @@ -1,852 +1,2 @@ -[Thu Oct 2 11:42:57 2025] 🚀 Pool test started - -[Thu Oct 2 11:43:01 2025] 🏊 Pool started with default relay - -[Thu Oct 2 11:43:14 2025] ➕ Relay added: wss://nos.lol - -[Thu Oct 2 11:43:36 2025] 🔍 New subscription created (ID: 1) -Filter: { - "kinds": [1], - "since": 1759419809, - "limit": 10 -} - -[Thu Oct 2 11:43:36 2025] 📨 EVENT from wss://nos.lol -├── ID: 5449492f915a... -├── Pubkey: c231760b10ce... -├── Kind: 1 -├── Created: 1759419811 -└── Content: 💜💜💜💜💜💜💜💜💜💜💜💜 https://nostr.download/e27f32b258bbdfe1e73dc7d06... - -[Thu Oct 2 11:43:36 2025] 📋 EOSE received - all stored events delivered - -[Thu Oct 2 11:43:41 2025] 📨 EVENT from wss://nos.lol -├── ID: caf09bb60e64... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759419821 -└── Content: john is the best -he likes to just stand there -he likes to eat sugar cubes -he mostly just stands t... - -[Thu Oct 2 11:43:44 2025] 📨 EVENT from wss://nos.lol -├── ID: e01356b1bf0a... -├── Pubkey: 0406b1bbbe74... -├── Kind: 1 -├── Created: 1759419823 -└── Content: 🏅ギルティーギアXX - -[Thu Oct 2 11:44:00 2025] 📨 EVENT from wss://nos.lol -├── ID: 5fad5c083762... -├── Pubkey: db0445869e55... -├── Kind: 1 -├── Created: 1759419839 -└── Content: Nothing but the best will do for magic internet money. -https://blossom.primal.net/5f7fbea898bfcf9... - -[Thu Oct 2 11:44:10 2025] 📨 EVENT from wss://nos.lol -├── ID: 7cc57da68132... -├── Pubkey: 087fe3adb094... -├── Kind: 1 -├── Created: 1759419850 -└── Content: That is a classic film - -[Thu Oct 2 11:44:15 2025] 📨 EVENT from wss://nos.lol -├── ID: 609a860530f5... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759419855 -└── Content: 😍 - -Zurich? - -[Thu Oct 2 11:44:16 2025] 📨 EVENT from wss://nos.lol -├── ID: 6af068b23493... -├── Pubkey: 2b1de1346ff1... -├── Kind: 1 -├── Created: 1759419856 -└── Content: Does your door work with a string? How is the door locked? Or can you still push it up? - -[Thu Oct 2 11:44:23 2025] 📨 EVENT from wss://nos.lol -├── ID: 8ab3cd207956... -├── Pubkey: deab79dafa1c... -├── Kind: 1 -├── Created: 1759419864 -└── Content: I'll never understand why people believe folks who are paid to say others words professionally ... - -[Thu Oct 2 11:44:31 2025] 📨 EVENT from wss://nos.lol -├── ID: d59a8d8dc608... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759419871 -└── Content: sometimes he hangs out with the unnamed donkey made of moonlight - -he has friends - -[Thu Oct 2 11:44:32 2025] 📨 EVENT from wss://nos.lol -├── ID: 6c4978b1fce6... -├── Pubkey: c831e221f166... -├── Kind: 1 -├── Created: 1759419872 -└── Content: It was the Russian... but then again, maybe not 🤣 - -https://blossom.primal.net/986df1efadeff5... - -[Thu Oct 2 11:44:34 2025] 📨 EVENT from wss://nos.lol -├── ID: 2a2f196a072c... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419872 -└── Content: #meme #bitcoin - - - -https://blossom.primal.net/813e03107f57f4606a2d8a8c129c6df03524fcdcbcdce6cbbf... - -[Thu Oct 2 11:44:43 2025] 📨 EVENT from wss://nos.lol -├── ID: 9570719ae3ca... -├── Pubkey: f7922a0adb3f... -├── Kind: 1 -├── Created: 1759419882 -└── Content: This is the show that started all this #DeMu talk and its unlike anything you've ever listened to... - -[Thu Oct 2 11:44:54 2025] 📨 EVENT from wss://nos.lol -├── ID: 4c9de90e324d... -├── Pubkey: 16cb4b38fe9a... -├── Kind: 1 -├── Created: 1759419893 -└── Content: https://i.nostr.build/q6whqe8wlzMy6ubL.png -Its that time again! We're closing in on the end of th... - -[Thu Oct 2 11:44:55 2025] 📨 EVENT from wss://nos.lol -├── ID: 3b5a6c87be19... -├── Pubkey: 036533caa872... -├── Kind: 1 -├── Created: 1759419894 -└── Content: Yeah! I like to think I don't save anything unnecessary, or totally unusable, but it happens. Let... - -[Thu Oct 2 11:44:57 2025] 📨 EVENT from wss://nos.lol -├── ID: 37bb53f99114... -├── Pubkey: b834a8c07a51... -├── Kind: 1 -├── Created: 1759419897 -└── Content: #Lafayette Indiana https://v.nostr.build/x3WmXwgR0CTEBJq9.mp4 - -[Thu Oct 2 11:45:00 2025] 📨 EVENT from wss://nos.lol -├── ID: 3a7898a12c5e... -├── Pubkey: d7c13d1edc3e... -├── Kind: 1 -├── Created: 1759419900 -└── Content: ✄------------ 0:45 ------------✄ - -[Thu Oct 2 11:45:01 2025] 📨 EVENT from wss://nos.lol -├── ID: 315bfab7c206... -├── Pubkey: 087fe3adb094... -├── Kind: 1 -├── Created: 1759419901 -└── Content: That is freaky - -[Thu Oct 2 11:45:03 2025] 📨 EVENT from wss://nos.lol -├── ID: 6f06e3704059... -├── Pubkey: 35edf1096d3c... -├── Kind: 1 -├── Created: 1759419902 -└── Content: And how a normie is supposed to safeguard such an id from hacks? RFID under the skin? - - - -[Thu Oct 2 11:45:03 2025] 📨 EVENT from wss://nos.lol -├── ID: 0ae20b5693f0... -├── Pubkey: ad0de68eb660... -├── Kind: 1 -├── Created: 1759419904 -└── Content: ความฝันกับความหวังต่างกันตรงไหน -#si... - -[Thu Oct 2 11:45:05 2025] 📨 EVENT from wss://nos.lol -├── ID: a11231aea6b5... -├── Pubkey: f768fae9f239... -├── Kind: 1 -├── Created: 1759419904 -└── Content: #バズワードランキング - -1位: #リボ (11) -2位: #なく (5) -3位: #ミキサー (5) -4... - -[Thu Oct 2 11:45:10 2025] 📨 EVENT from wss://nos.lol -├── ID: fda1a94c635b... -├── Pubkey: bdb827d5dd18... -├── Kind: 1 -├── Created: 1759419931 -└── Content: Have been saying this for minimum 6-10 months now - -[Thu Oct 2 11:45:15 2025] 📨 EVENT from wss://nos.lol -├── ID: fbbb1a8e1883... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419913 -└── Content: #meme #bitcoin - - - -https://blossom.primal.net/ea65f26f04fe282a56efc0c74b6f7881dcf95cf1bed76e9646... - -[Thu Oct 2 11:45:18 2025] 📨 EVENT from wss://nos.lol -├── ID: dae37e3e2a01... -├── Pubkey: f683e87035f7... -├── Kind: 1 -├── Created: 1759419916 -└── Content: 📊 Reliable nostr statistics now available at npub.world - -https://blossom.primal.net/fe6d77745c... - -[Thu Oct 2 11:45:21 2025] 📨 EVENT from wss://nos.lol -├── ID: e98f692cd821... -├── Pubkey: 4cf2e85f2ecf... -├── Kind: 1 -├── Created: 1759419902 -└── Content: Market snapshot (2 Oct): PX 2,359.40 +0.33%; DAX 24,423.61 +1.29%; DJ STOXX 600 567.60 +0.52%; NA... - -[Thu Oct 2 11:45:25 2025] 📨 EVENT from wss://nos.lol -├── ID: a4debf6eda9d... -├── Pubkey: 6a02b7d5d5c1... -├── Kind: 1 -├── Created: 1759419924 -└── Content: Well, nostr:npub1f5kc2agn63ecv2ua4909z9ahgmr2x9263na36jh6r908ql0926jq3nvk2u has done an amazing j... - -[Thu Oct 2 11:45:36 2025] 📨 EVENT from wss://nos.lol -├── ID: 75edaab76e6a... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419934 -└── Content: #meme #bitcoin - - - -https://blossom.primal.net/47e112b56565c473db0300b9f1c8e9026d31f29b2e5a9f26b6... - -[Thu Oct 2 11:45:42 2025] 📨 EVENT from wss://nos.lol -├── ID: cce964ee26c3... -├── Pubkey: 4e64c603aceb... -├── Kind: 1 -├── Created: 1759419942 -└── Content: 👏🏻👏🏻👏🏻👏🏻🙏🏻 - -nostr:nevent1qqswaa533cykjc0vgxxmf8nmu2dg3g6uu0xdm5cw4... - -[Thu Oct 2 11:45:43 2025] 📨 EVENT from wss://nos.lol -├── ID: bd66386bb0e4... -├── Pubkey: fdf22dc28791... -├── Kind: 1 -├── Created: 1759419943 -└── Content: https://image.nostr.build/ebf0ff9e9675e82b53718cf515dcb1168f03968fe0108993f43991559093c853.jpg - -[Thu Oct 2 11:45:44 2025] 📨 EVENT from wss://nos.lol -├── ID: 3f1089f6f622... -├── Pubkey: adc14fa3ad59... -├── Kind: 1 -├── Created: 1759419943 -└── Content: 🫵🏻🙏 - -[Thu Oct 2 11:45:47 2025] 📨 EVENT from wss://nos.lol -├── ID: b2db18db5304... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419945 -└── Content: #meme #bitcoin - - - -https://blossom.primal.net/cb9eb04c5bb49d58a33c0e17425606f1e3357893cb6d47d3e0... - -[Thu Oct 2 11:45:47 2025] 📨 EVENT from wss://nos.lol -├── ID: c0abb73c57da... -├── Pubkey: 96ae8563bd22... -├── Kind: 1 -├── Created: 1759419947 -└── Content: Health insurance is a scam. - -[Thu Oct 2 11:45:54 2025] 📨 EVENT from wss://nos.lol -├── ID: 25eaedc2c644... -├── Pubkey: d1f8ac7cfbac... -├── Kind: 1 -├── Created: 1759419952 -└── Content: Happy Belated Birthday! Hope you had a Funtastic day 🎉🎁💐🎂🎊 - -[Thu Oct 2 11:45:57 2025] 📨 EVENT from wss://nos.lol -├── ID: 3b6919f20ecb... -├── Pubkey: 52b4a076bcbb... -├── Kind: 1 -├── Created: 1759419957 -└── Content: gm Nostr. - -[Thu Oct 2 11:45:58 2025] 📨 EVENT from wss://nos.lol -├── ID: d05a586a961a... -├── Pubkey: 71c20e5545c5... -├── Kind: 1 -├── Created: 1759419957 -└── Content: Mood every morning -https://blossom.primal.net/a4b9b97b0948f6ab25036c52ce3580db28dd52396f1f3d7277... - -[Thu Oct 2 11:46:02 2025] 📨 EVENT from wss://nos.lol -├── ID: 93af19a07911... -├── Pubkey: f683e87035f7... -├── Kind: 1 -├── Created: 1759419961 -└── Content: cc nostr:nprofile1qy2hwumn8ghj7ct8vaezumn0wd68ytnvv9hxgqg4waehxw309a5xjum59ehx7um5wghxcctwvsqzpmn... - -[Thu Oct 2 11:46:06 2025] 📨 EVENT from wss://nos.lol -├── ID: 92450741c3db... -├── Pubkey: 8384e79741c1... -├── Kind: 1 -├── Created: 1759419967 -└── Content: It looks like some one with Parkinson's made it. - - - -[Thu Oct 2 11:46:16 2025] 📨 EVENT from wss://nos.lol -├── ID: f0b1fa224498... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759419974 -└── Content: #meme #bitcoin -BUY BITCOIN - - - -https://blossom.primal.net/cc20ee3b13ecfc84fef02edf5c6bde6ee12431... - -[Thu Oct 2 11:46:20 2025] 📨 EVENT from wss://nos.lol -├── ID: 8b05cc12eb5c... -├── Pubkey: f40901c9f844... -├── Kind: 1 -├── Created: 1759419979 -└── Content: Pick a Random Open PR #2003 -タイトル: Use nip22 style tags in git statuses -作成者: dluvian... - -[Thu Oct 2 11:46:23 2025] 📨 EVENT from wss://nos.lol -├── ID: e48131f4ad3e... -├── Pubkey: 899ab335d3b0... -├── Kind: 1 -├── Created: 1759419983 -└── Content: Bitcoin is invading trad-fi. -nostr:nevent1qqsxnxk6dc6gwthdd74em4tlrkecnyfg2zss3thdl390ja06qyhaf6g... - -[Thu Oct 2 11:46:26 2025] 📨 EVENT from wss://nos.lol -├── ID: db3417a1ea38... -├── Pubkey: 4cf2e85f2ecf... -├── Kind: 1 -├── Created: 1759419967 -└── Content: Commerzbank’s latest forecasts suggest the US economy will grow this year and next slightly bel... - -[Thu Oct 2 11:46:27 2025] 📨 EVENT from wss://nos.lol -├── ID: 9ef2f62d6b90... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759419986 -└── Content: they, john and the no name donkey, -just kinda walk around or are still - -ive never seen john get ... - -[Thu Oct 2 11:46:28 2025] 📨 EVENT from wss://nos.lol -├── ID: 764def10463e... -├── Pubkey: f5e67a824944... -├── Kind: 1 -├── Created: 1759419986 -└── Content: compro mosquitos wolbachia ¿alguien? - -[Thu Oct 2 11:46:33 2025] 📨 EVENT from wss://nos.lol -├── ID: 67c7dd1bcba2... -├── Pubkey: 04c960497af6... -├── Kind: 1 -├── Created: 1759419993 -└── Content: Oh, I didn't now we were orange , had a tail and 🐾🐾 🤔 -Maybe I am delusional 🤔😅 - -... - -[Thu Oct 2 11:46:36 2025] 📨 EVENT from wss://nos.lol -├── ID: afe890faef3e... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759419996 -└── Content: https://npub.world/stats - -🤌🤌 - -nostr:nevent1qqsd4cm78c4qrlskgp870qhh7qt9sepn98gp0utj2gk6v5j4... - -[Thu Oct 2 11:46:51 2025] 📨 EVENT from wss://nos.lol -├── ID: 7acc74259799... -├── Pubkey: a3e4cba409d3... -├── Kind: 1 -├── Created: 1759419989 -└── Content: - -https://uploads.postiz.com/3264e94fb1b846c8bfccf59e48d8bf85.png - -[Thu Oct 2 11:46:58 2025] 📨 EVENT from wss://nos.lol -├── ID: 2fd4cd59789e... -├── Pubkey: 0b26f590631b... -├── Kind: 1 -├── Created: 1759420017 -└── Content: 🤣🤣🤣 - -[Thu Oct 2 11:47:01 2025] 📨 EVENT from wss://nos.lol -├── ID: 9c46471834c1... -├── Pubkey: 2b1de1346ff1... -├── Kind: 1 -├── Created: 1759420021 -└── Content: https://cdn.nostrcheck.me/1c674155c4f713054ec8a10df5eaa5636d243df40d07447980f1885642d706c1.webp - -... - -[Thu Oct 2 11:47:04 2025] 📨 EVENT from wss://nos.lol -├── ID: 51a4d7c2106c... -├── Pubkey: bc0bcc50f9a1... -├── Kind: 1 -├── Created: 1759420023 -└── Content: ألف مبروك 🥳 والله يرزقكم برهم وصلاحهم والحمدلله على ... - -[Thu Oct 2 11:47:06 2025] 📨 EVENT from wss://nos.lol -├── ID: b63745941271... -├── Pubkey: 6a02b7d5d5c1... -├── Kind: 1 -├── Created: 1759420018 -└── Content: Gm agitator - -[Thu Oct 2 11:47:06 2025] 📨 EVENT from wss://nos.lol -├── ID: ed874935ec1d... -├── Pubkey: 0406b1bbbe74... -├── Kind: 1 -├── Created: 1759420025 -└── Content: おやのす🌔 -https://youtu.be/bOSWJTu5Prw?si=oT3DtqbpbOp0VDrr - -[Thu Oct 2 11:47:06 2025] 📨 EVENT from wss://nos.lol -├── ID: 0e32734cbc67... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759420025 -└── Content: https://image.nostr.build/7304775744fef9bc979a1940fb31202045b8b06f1ebfe90141266eeb28c52417.jpg - -n... - -[Thu Oct 2 11:47:21 2025] 📨 EVENT from wss://nos.lol -├── ID: 56acfa902e7d... -├── Pubkey: d981591e0ea6... -├── Kind: 1 -├── Created: 1759419861 -└── Content: DiversityWatch (October 2, 2025) - -From Amerika.org - -~~~ ADL Deletes ‘Extremism’ Database Afte... - -[Thu Oct 2 11:47:25 2025] 📨 EVENT from wss://nos.lol -├── ID: faf15824f3bf... -├── Pubkey: deab79dafa1c... -├── Kind: 1 -├── Created: 1759420047 -└── Content: GM semi 🫡 - -[Thu Oct 2 11:47:32 2025] 📨 EVENT from wss://nos.lol -├── ID: ea997cd30e54... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759420052 -└── Content: firewood or foraged pennyroyal - -but he doesnt work that much - -i would never call him a beast of b... - -[Thu Oct 2 11:47:38 2025] 📨 EVENT from wss://nos.lol -├── ID: fe973c7c45f5... -├── Pubkey: 0b26f590631b... -├── Kind: 1 -├── Created: 1759420057 -└── Content: Sorry brother 😬🤣 I was restarting router - -[Thu Oct 2 11:47:39 2025] 📨 EVENT from wss://nos.lol -├── ID: f7f07c0a6a4d... -├── Pubkey: 356875ffd729... -├── Kind: 1 -├── Created: 1759420059 -└── Content: You want to get as far away from the lipid profile of seed oils as you can. - -Terrible = canola oi... - -[Thu Oct 2 11:47:51 2025] 📨 EVENT from wss://nos.lol -├── ID: d5af40b4e947... -├── Pubkey: edb470271297... -├── Kind: 1 -├── Created: 1759420072 -└── Content: 10 years ago I emerged from the woods to build something more - -Now after having done so I feel t... - -[Thu Oct 2 11:47:59 2025] 📨 EVENT from wss://nos.lol -├── ID: 4abc3d65f486... -├── Pubkey: af5e5c0f30b2... -├── Kind: 1 -├── Created: 1759420078 -└── Content: Dear me✨ - -Brave and beautiful one. -From now on and till the end of your earthly journey, I will... - -[Thu Oct 2 11:48:01 2025] 📨 EVENT from wss://nos.lol -├── ID: f0f30b54f0ae... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759420079 -└── Content: #meme #bitcoin -Ignore the direction of the school. -Keep stacking sats, fish. - - - -https://blossom.... - -[Thu Oct 2 11:48:05 2025] 📨 EVENT from wss://nos.lol -├── ID: c5935c3e834b... -├── Pubkey: 3f770d65d3a7... -├── Kind: 1 -├── Created: 1759420085 -└── Content: Nice looking rooster, bro. - -[Thu Oct 2 11:48:07 2025] 📨 EVENT from wss://nos.lol -├── ID: db0b8148c793... -├── Pubkey: a4132de3f6fe... -├── Kind: 1 -├── Created: 1759420086 -└── Content: Intercepted Gaza flotilla boats arrive at Israel’s Ashdod port - -Several boats from the Global S... - -[Thu Oct 2 11:48:09 2025] 📨 EVENT from wss://nos.lol -├── ID: a61672484b30... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759420089 -└── Content: thats what i know about john - -he stands there and he sometimes has company - -[Thu Oct 2 11:48:10 2025] 📨 EVENT from wss://nos.lol -├── ID: be57235ebb4b... -├── Pubkey: 01438c6f3044... -├── Kind: 1 -├── Created: 1759419985 -└── Content: Ex-OpenAI researcher dissects one of ChatGPT’s delusional spirals -https://techcrunch.com/2025/1... - -[Thu Oct 2 11:48:10 2025] 📨 EVENT from wss://nos.lol -├── ID: 299ebf1ac3aa... -├── Pubkey: 0d211376b2c9... -├── Kind: 1 -├── Created: 1759419938 -└── Content: The best Amazon Prime Day deals on Anker charging gear and other accessories -https://www.engadget... - -[Thu Oct 2 11:48:16 2025] 📨 EVENT from wss://nos.lol -├── ID: 1b9e8c4b3ee3... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759420095 -└── Content: 🐔 - -nostr:nevent1qqsfc3j8rq6vr75c3k7xsmd945u49dfxwsshnh9z4pm2s27wl4ymjtcppamhxue69uhkumewwd68yt... - -[Thu Oct 2 11:48:16 2025] 📨 EVENT from wss://nos.lol -├── ID: dbce08f706dd... -├── Pubkey: 36af108c2769... -├── Kind: 1 -├── Created: 1759420096 -└── Content: You don’t want your total cholesterol crazy high but don’t want it too low either. Mainstream... - -[Thu Oct 2 11:48:42 2025] 📨 EVENT from wss://nos.lol -├── ID: a69f3dd53072... -├── Pubkey: 6a02b7d5d5c1... -├── Kind: 1 -├── Created: 1759420119 -└── Content: Well looks like I have to look back for that one - -[Thu Oct 2 11:48:45 2025] 📨 EVENT from wss://nos.lol -├── ID: 8c11338af6bb... -├── Pubkey: 71c20e5545c5... -├── Kind: 1 -├── Created: 1759420125 -└── Content: mood every morning -https://blossom.primal.net/2de495138c52e3e71f19c437d4e2a83a78b215018dcf88f074... - -[Thu Oct 2 11:48:55 2025] 📨 EVENT from wss://nos.lol -├── ID: 09c37f81cd31... -├── Pubkey: 8c5923931963... -├── Kind: 1 -├── Created: 1759420132 -└── Content: プラチナになってる - -[Thu Oct 2 11:48:56 2025] 📨 EVENT from wss://nos.lol -├── ID: 7d80f283a966... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759420135 -└── Content: 😍 - -nostr:nevent1qqsxkzjr6tmef5kxng3c4p4nk58lkmr2jm60y60jmszrha64fpnuy2sppamhxue69uhkumewwd68yt... - -[Thu Oct 2 11:48:57 2025] 📨 EVENT from wss://nos.lol -├── ID: 55927691ba22... -├── Pubkey: b63581fed371... -├── Kind: 1 -├── Created: 1759420136 -└── Content: ‍Crypto Live Dealer Baccarat Redefines Online Gaming - -The integration of blockchain technology ... - -[Thu Oct 2 11:49:04 2025] 📨 EVENT from wss://nos.lol -├── ID: 230569d0c203... -├── Pubkey: 367cccfb659a... -├── Kind: 1 -├── Created: 1759420143 -└── Content: Original post: https://bsky.app/profile/did:plc:vrg5pyvxe6havmn5hiqqae22/post/3m274m4enuk2r https... - -[Thu Oct 2 11:49:12 2025] 📨 EVENT from wss://nos.lol -├── ID: d9578c93625a... -├── Pubkey: 50d94fc2d858... -├── Kind: 1 -├── Created: 1759420152 -└── Content: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wq8vdeta what's your favorit... - -[Thu Oct 2 11:49:12 2025] 📨 EVENT from wss://nos.lol -├── ID: b8c5d604f68f... -├── Pubkey: 17538dc2a627... -├── Kind: 1 -├── Created: 1759420152 -└── Content: If you have failed hard at birds I want to follow you - -#farmstr - -nostr:nevent1qqsqesh3dfqcyxmpf4p... - -[Thu Oct 2 11:49:19 2025] 📨 EVENT from wss://nos.lol -├── ID: db5cb3126f16... -├── Pubkey: cb230a5e9341... -├── Kind: 1 -├── Created: 1759420158 -└── Content: わぁ、プラチナってすごいですね〜!おめでとうございます!どんなふ... - -[Thu Oct 2 11:49:20 2025] 📨 EVENT from wss://nos.lol -├── ID: 0b559f2c7aab... -├── Pubkey: bf2376e17ba4... -├── Kind: 1 -├── Created: 1759420160 -└── Content: funny that I haven’t seen people being unnecessarily mean about core/knots on nostr, or maybe I... - -[Thu Oct 2 11:49:22 2025] 📨 EVENT from wss://nos.lol -├── ID: 225ec974be70... -├── Pubkey: d981591e0ea6... -├── Kind: 1 -├── Created: 1759420041 -└── Content: The Shadowy Legacy of Andrew McCabe - -From Roger Stone - -Andrew McCabe, former Deputy Director of t... - -[Thu Oct 2 11:49:23 2025] 📨 EVENT from wss://nos.lol -├── ID: 6409e853ab14... -├── Pubkey: d3f94b353542... -├── Kind: 1 -├── Created: 1759420162 -└── Content: It's a neverending paretto within the 20%. - - - -[Thu Oct 2 11:49:32 2025] 📨 EVENT from wss://nos.lol -├── ID: 492c3b86c6b2... -├── Pubkey: 1848313553d3... -├── Kind: 1 -├── Created: 1759420172 -└── Content: Again, allowed yes. You should phrase your questions differently. -The answer to if we "should all... - -[Thu Oct 2 11:49:39 2025] 📨 EVENT from wss://nos.lol -├── ID: 3df638b9b7bd... -├── Pubkey: 5bab615f042d... -├── Kind: 1 -├── Created: 1759420178 -└── Content: betaに人権ないっていくらどんさんに言われたから - -[Thu Oct 2 11:49:44 2025] 📨 EVENT from wss://nos.lol -├── ID: 9fc1d1f3c429... -├── Pubkey: cf3a2db57981... -├── Kind: 1 -├── Created: 1759420184 -└── Content: Das ist nun die geputzte „Auslese“ für die erste richtige Pilzfanne in diesem Jahr 😋😋... - -[Thu Oct 2 11:49:54 2025] 📨 EVENT from wss://nos.lol -├── ID: 6b20ca81b8d9... -├── Pubkey: 50d94fc2d858... -├── Kind: 1 -├── Created: 1759420193 -└── Content: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wq8vdeta can you hear me - -[Thu Oct 2 11:49:54 2025] 📨 EVENT from wss://nos.lol -├── ID: a28bc5751cf3... -├── Pubkey: 479ec16d345e... -├── Kind: 1 -├── Created: 1759420194 -└── Content: คิดถึงแชมป์เหมือนกัน เจอกันเชียงใ... - -[Thu Oct 2 11:50:00 2025] 📨 EVENT from wss://nos.lol -├── ID: bb9570ecdbb2... -├── Pubkey: b1b4105a564a... -├── Kind: 1 -├── Created: 1759420200 -└── Content: ✄------------ 0:50 ------------✄ - -[Thu Oct 2 11:50:02 2025] 📨 EVENT from wss://nos.lol -├── ID: 877bfd84cb78... -├── Pubkey: 8c5923931963... -├── Kind: 1 -├── Created: 1759420199 -└── Content: たぶん有料のしかもちょっといいプランじゃん - -[Thu Oct 2 11:50:08 2025] 📨 EVENT from wss://nos.lol -├── ID: d2a24f8bd654... -├── Pubkey: 832b77d5ecb0... -├── Kind: 1 -├── Created: 1759420208 -└── Content: 🟩BUY BTC with EUR -Price: 102390.56EUR (0%) -BTC: 0.023 -EUR: 2355 -Method: SEPA Instant -Created: ... - -[Thu Oct 2 11:50:09 2025] 📨 EVENT from wss://nos.lol -├── ID: 4d617918bff3... -├── Pubkey: b7a07661869d... -├── Kind: 1 -├── Created: 1759420209 -└── Content: Le consensus de Nakamoto – Episode 22 -Dans cette vidéo, Cyril Grunspan utilise à nouveau un m... - -[Thu Oct 2 11:50:14 2025] 📨 EVENT from wss://nos.lol -├── ID: d60c3b59af2e... -├── Pubkey: ff9f3daff5dc... -├── Kind: 1 -├── Created: 1759420210 -└── Content: 🥞 ¡#PancakeSwap pulveriza su propio récord! El DEX multichain alcanzó $749 mil millones en ... - -[Thu Oct 2 11:50:19 2025] 📨 EVENT from wss://nos.lol -├── ID: 347c25fe60e8... -├── Pubkey: 45835c36f41d... -├── Kind: 1 -├── Created: 1759420218 -└── Content: btw i use this for everything, i love it: -https://github.com/purifyjs/core - -[Thu Oct 2 11:50:20 2025] 📨 EVENT from wss://nos.lol -├── ID: 21c1e474706a... -├── Pubkey: 367cccfb659a... -├── Kind: 1 -├── Created: 1759420219 -└── Content: Original post: https://bsky.app/profile/did:plc:keg3c3lhpxiihjho4e7auzaq/post/3m27frfqb7225 https... - -[Thu Oct 2 11:50:25 2025] 📨 EVENT from wss://nos.lol -├── ID: 540e8564dd09... -├── Pubkey: 5bab615f042d... -├── Kind: 1 -├── Created: 1759420225 -└── Content: 何かしらの無制限がつくやつ - -[Thu Oct 2 11:50:26 2025] 📨 EVENT from wss://nos.lol -├── ID: b40bae265610... -├── Pubkey: 957dd3687817... -├── Kind: 1 -├── Created: 1759420216 -└── Content: Jimmy Kimmel Calls Trump a 'Son of a Bitch,’ Says Government Shutdown Allows Him to ‘Say What... - -[Thu Oct 2 11:50:27 2025] 📨 EVENT from wss://nos.lol -├── ID: 4d880eb2bdfb... -├── Pubkey: 5729ad991a7e... -├── Kind: 1 -├── Created: 1759420226 -└── Content: #asknostr how do you channel your creativity or excess energy? -Or when you feel low, how do you ... - -[Thu Oct 2 11:50:30 2025] 📨 EVENT from wss://nos.lol -├── ID: 590e23e23d0f... -├── Pubkey: ded3db391584... -├── Kind: 1 -├── Created: 1759420229 -└── Content: insert mia martini - -https://image.nostr.build/9d8ebd836f785a679932f89113809ee63fcbb70d05f31daf5bc... - -[Thu Oct 2 11:50:30 2025] 📨 EVENT from wss://nos.lol -├── ID: 239892245953... -├── Pubkey: 50d94fc2d858... -├── Kind: 1 -├── Created: 1759420230 -└── Content: nostr:nprofile1qqsqa6p85dhghvx0cjpu7xrj0qgc939pd3v2ew36uttmz40qxu8f8wq8vdeta hey - -[Thu Oct 2 11:50:37 2025] 📨 EVENT from wss://nos.lol -├── ID: 19ec03e4b586... -├── Pubkey: 2ff7f5a3df59... -├── Kind: 1 -├── Created: 1759420236 -└── Content: Hulu Bender's New Look | Futurama | Hulu commercial -#Hulu #abancommercials #commercial Video Hulu... - -[Thu Oct 2 11:50:38 2025] 📨 EVENT from wss://nos.lol -├── ID: 9575e4b84ac2... -├── Pubkey: e62adca21cf6... -├── Kind: 1 -├── Created: 1759420237 -└── Content: john-knee? -johnny yea i know a johnny -like human john -not active friendship but no quarrel - -[Thu Oct 2 11:50:47 2025] 📨 EVENT from wss://nos.lol -├── ID: 9ca71ff6759f... -├── Pubkey: 2ff7f5a3df59... -├── Kind: 1 -├── Created: 1759420247 -└── Content: Xbox Announcing new updates to Xbox Game Pass Ultimate commercial -#Xbox #abancommercials #commerc... - -[Thu Oct 2 11:50:48 2025] 📨 EVENT from wss://nos.lol -├── ID: 95a8a2fc10cb... -├── Pubkey: edc615f59aa8... -├── Kind: 1 -├── Created: 1759420247 -└── Content: African what? Lol... - -[Thu Oct 2 11:50:50 2025] 📨 EVENT from wss://nos.lol -├── ID: 6156127e4923... -├── Pubkey: 000001c66890... -├── Kind: 1 -├── Created: 1759420249 -└── Content: You think the neckline is bold? You should meet the attitude -https://images2.imgbox.com/bf/a0/90... - -[Thu Oct 2 11:50:58 2025] 📨 EVENT from wss://nos.lol -├── ID: 92d07c3f1344... -├── Pubkey: 2ff7f5a3df59... -├── Kind: 1 -├── Created: 1759420257 -└── Content: How to save your progress in Ghost of Yotei -#GhostofYotei #GamingGuide #GameTips Learn - how to sa... +[Thu Oct 2 14:40:34 2025] 🚀 Pool test started diff --git a/tests/pool_test b/tests/pool_test index 43b18d894dbee327caae26a68a058adaf0ca68e5..4804d4e1ee359d0587142e6558e39518592d54dc 100755 GIT binary patch literal 186520 zcmdqqdwdgB9yk6ePzVYpDriuVh{Y`m*s8?NNV z&Y3f3&YYy|)rG~U_RGl7Qa}B*lQfme`N5yj5~^3VUtd3-&#f(~SIuRm)qa`kZCw2&KXLQ# z^y?QrC!xB)X%xwgA4v|j#q;H zn)b6Q!ms~Qm6xB?YwCDs%YN8o1^oZ~jnl53lR91>=OIvNWt4hN^|NCaFS>Z*3CAv8 zFn;l(rB&7AtGyG)Pds75@?{f_Gj~ws^2i_6r%pR_mL|1{C_^)9{X$kcm7m%+4BJ)w zs@uN1bo|g|p35sl%uv|oJcwOx0tn)=wJp_cyn-@i-d2mHyVa+1zJK)LANO(G+xm##(8qC) z>LdQ%KJwqc4?m+1zp4-acOQOgAMJleALXAYzQ63lKP&r)Ke>xn+{+1^KaX7&-E--l1@qdbW| z{GLAi%|6N#kmLSYKMC}a&r5yy{65-ebRY4%`zX)QKJs~~55KLCc6+vuDTf{MzD zOBO8;R#eWMF>Ud(r4=*hUA(wLD=WKX$+D$o%Y*YOgJoq_=${5Iub3Y=E^p#xxn=X0 zEe%#w2PMbl!OCS)AITLrOPTSmoK`c zO#UoA{y5ui)ytMHmdyS<&t4msS5z*Vw|LQ&_MD|SQZ`kb6|!}qy`+MHd5bE`(s|ep znyTObl(Z+m;L3`5mzB+1u)wxkPv!rtEU5$jPo}A(RnA+wVA+!16|gnU|J0yj{sO;t z?zzQfD=QaCd#ZQK{Z+vQ%T_Km6VqmvmMyJVX>F(omMvUhzLnNrpq*7xc&6H6(b7f1 zvgOMcr*~K`fy)BHMaz~hH|-KhS5#Imt29%Ailqw{ExkmWS$uBU{KbnZmIlj~R0RFY ztemAHODpCF(|IkdtgwouN}@7G71V)K1xv@w4^}SjU99<)R|JB~v~vp1oL+YE6~T(- z(pBdNuLx9>1(z*ewz8tKZ1J-BVha~kEDn~<_g|*ASI;Y3xM-=>4;D({)lPxRMN5MV z%?RnQ^Zk{Y>^N_6aM6+qZOOdFDwnF|iz_MuS|I3G%~N*ivPDa^B^67SEL%~bRaVSj zq0Lv(WtEbfJYz|(GOv~;^CV0PU^{?1iJCgfl7O~!-qK}OzGY?0uUNjq?A`MgYf`NF z+VW-6FN4~`WzweF!ugArsjEfy3rHsoRtBX>&6mrpm&K|y(uC667ON(fZA;Z5B;%#F zqc2>zxN5myZI%C}Ym@46Y9A~6#d1uESWu;Mker3B=8^L&^|jh$c~H)^Y+ocroiwRz z`TTiH7plD$nhhtF@Gn~)y!eWx^Q0N29JXS}p3-Mjk#W4G){z$2V&ue2Ka}j|&kNcP zVjV@Y3(lK=nJQD+!g-4pYjV2OX_96Vl|!3FkTa1UdDKI0o~C5^V)g!b_1@}1JxTR$ zV!D$ZKOtvAj&@pc(J9l)j+@|3zst=_zda%S?!@%FT-)28?Z?~RrbCaDBBk;_e!>Yd z!uOMB;Qr=+1LP@ufV>-E{+E${RiaV@+ z)B9*skiOH5AFLH3eVdtfXeCHLZKellvync~+&@!Wh;-E_L&vmPW~?9Bjg{!JIOzVN6Ej0 z$H;fWCtnw$x9dK>7Okm_E)o%O49poe6E^-gtO`Z++kdKFFlTU=_ zke>wil8;dnLHY5K7b0FKFNT+pp93!?zYtzdJ`e6EzXTp2zYJbYUI`D8UkR@#Ukh&{ zzYg9^-Ux3Yza8F6elNU@{BQ7f@_)i3qcr*D#cnf(x zyp?){UaTi`D8yWno}2jCv^zr(Z1|M`X0J~`x1Al^&syqdff z9wPrYyq^4NcoX>x@MiLj@D}nn;H~8E!rRC<53u@2JNZY5kC1-??-huL+*up$xnv+ z$fv<|^3&lZ{7rZl`TOuB`4+fV-n;+D;STa0 za2NS5xSM+S`OR=`Uhn>YC)`1PFWg1`Alyyjr-0Ujm)6&@qc`x)auc{kz>@=QEOcaaZ)C&>?hYw8O&@{?Ns9|3oekAl0%kAl0& z$HP73dGKuVsqh@~Lb#W_2<{^~N4m;w#_gh$9%!8^%o;ZgGI;W6?ic%1wWxIunDyo>x1c#`~axK`1-|33wHkUs}^ zk*|Zh$zOqc$lru#lfMhkA^#BWCI1BOBi{zs$rJDr@?G#!@;&f!^1X0Bc|Ux95g;E7 zuO{CQ9wHwGuO}Y?Zz3NBZzdlDZy`Sh-b$VeZzG=wZzs=(N64qcJIT+0N6F8I$H>oz z$H~j!2KfSb7x`uIBzXX?E$rR@tKbgu)o>Si4ctwBJ={ZnV`}|}{1(LLklzjWlDEKp zj;o0Pi;5p<=;a>6}+(&*TTqj=(FCo7UUP|5wFDJhh?kB$+ z9w2XlSCc;s50O6xuP1*B-bDT!yqP=#Zy`S!-}h)Ge--g<Z=S z`3`uDd>1@Uz6WlQ?}c}fYgl(pk~`p*UAa`J#mU8mwcKlAncq%E`}#`^hha2gu9d)#MfM5cy(wJ^6BY6L~ef znS3q0h5Wj2G5(WZi}*J326#L9E$|5WUGPrw7I>8W@9-FT8$3?l4mZfx!@I~|hbPJ3 zfoqF;_y3RJ4)V|7F7p4v-Q-`xJ>*^RZ1N;LhrAo^B_D|I0s6>?!gccD@DlPv;HBh8 zz{|BX# zC;7GTD0w41Mt&PSPJS=kAb$YfMgDhqlKkIr?b6=;|7o~``~|p+JOX!l!2 zg!~P}my*8=FDL&9?kE2g9w6TauO>I(A@XnG_2g|`*7<58-;MZY@}J=?>p zz7qKa$XCOw$!p*t@*CjwRb=B!34U zCI1i}BmWE@C*KY?$iIbmk^cZslK%?Vmh|rbzvFswkZU`v@yA8(fV;_Ea1Z%G@NDvt z@Er0na4-2dxR3mJxK2I=UP4{~FD2LE<>Y6<{p9Dt1LSky)#MA{A@WP%_2ieso5)wf zo5@4)7V>&{EBTG^Hu63AzCk){{4;nd`8IetxdHc+cfkYXKf$ZX ze}{+2GZI#P>&XYfo5=TrH}*`80Tp zT!+WW&w?A|v*2CibKyzy1#m6UyZ>JbcaSfIyU2rZH~A{Khx{6NHhCDHLw+ONOMWZd zM}9Y4CvSn5kZ-~IYAN}{h%YDq7u-+&6g)t_0sWzxydCi&@|WTD0v;jX0q-RL1|B8<0Ujey!sF!KaD#ln*VeevMZOO_N$!Gc zm-p`f2f-cWBjGOcBjIlHv2YLhcz8DXaqt{+FWgI>5BHJ(h|jNe@&d${kn8YL@)_`Q z@==&~`N_{ge1QA{cr|%BJVagruP0vuZz5j~ZzjJA-a>v2yp=o*ZzI16-cEiiJVJgC zyp#L^c$EAf@ECa;JWl=}xIz9hyo-DzJW2ib;PJTW-LOvJXNxlFcC0_)OkzWpvlUKtH@-^@- z@;Z2uyb-P~@7@1zhdapcfxE~bfV;^bfqTdwgJ+XJ4bLHe5$+{l5BHIGz;*IB;3edn z;icp;cscoJa6kE%@BsNY@M`ki@DO8~LH| zc5)9qLOurGNq!7GN`5>%Mm`xHCog~-sy` zyg`1@9?bvAe?@$fT*K!(T2=4V2l8=~4~2WkJ22nKCLf0Q9P&fq zUh*U0KJvf7b@Ci|3HgceQu3+ra`NeLKlzFH+$2C=g!pRmGvOifS@3%D3*k-VW$cJV|~5TwB?@|IdRv$QQv~&w zd?nmNz6PF6el0wQ{6@H!{8qS+{2sVY{vf=B{Gaer@+aWsxec#?cFT&wQg|4)HC$cx}E@^j#B^7G*y^11MA@(Oqk`4YI7yb|ss zzXGn4AJpHfX9@XQ#Fvs^3oj?X0q!Ti6&@hJ8(vNRS9pm0A$UFcKjBT}Pr#eW{{wF! ze+k}7z8>C2-T`kXe*+#NpNjS2PV)BPQ{Vw|AH16UGv8|1gayU6c`C&^pj+LgWg|08e*`M=;U@~7c$^0)9D z?IC{-@!8}r!*j?x;9l}K;Xd+r;W~K?UPAsUyp;UE@N)75+)w^JJV3q&UQJ$z`9_HR zSH#zoXMAt<+a~hC@Mdx+yoG!iyp{Y=cpJF~-cFtkkB}b=?*X4_)hZm@F@8vc#QlVc%1x0xIz92 zyo-DrJV~B_YpZ(q|1P+LJPCJ^?}fX``{Cc6_K**TXOr&-&mrG}-_P}uABcD#`3Sg9 zemJ~@eBB_c{-xw&5MNF{4(=yE0UjWq46i0X1s)3hp8wiQlJlldnR&hrAY^OlRpG6A^!)wl>BjcIr%eiKlw}W0QoEMYVtSXA@a@edh(CpP2``# zo5{DqTgbnLx03$=ZzKN**J(TXuZWM3Yxw=RPV&L2|Njf}7v8kyZ!vNw;^XAQ;Rg93 z@GkNr;7RhM;M&!_`~R_U2l+&}i+n2FO@1oeLtYHeCO;dVLtYB^l9$1K>`5L&Nybc~9Z-7^m&)IC9_YnClh_5HV6W&CAFT9!j0eB1fKj5w8Pr}>C zpNF@TuZKs-H^Do}2cn-x$=^hLjQo9goct5GLB0*%MZN=`B>x7kg?jgYFRp6``S*x- zk^c;Llm8C)kZ0mKG@E<~Jcs;1xR-nc+(&*mTqi#YUP68hyp;TScscoGxSxD(YW;`Y zhxlr89UdY-3tmq?2EPa0L_Q1g&EyxrTgd0aTgfZnZRCsL?c_mtgnSjele`8VC2xSo z$Zv+n$?t?4@@)+Vv$v=aalW&Ln$$!UuH9-C~;;YHK;34uPyq>%p-b6kS z-}`DN9|~_FKM>wZ{t()yjr>r=x07eVBjiWJJIQn5QS!;~7|N6B}F7gcAHbKzd{KQP|<$R{CQCoh1Pkn8YL^0VOOn|;ZREx9cJi6<2>Bd%C;38nl>9PyjJy&aC%+PIkY5AuBHxkv_kYO4 zh}Y_R_y1eq4)VL;F7gN9Zt_;RhrA7*P2LXAAzuggl5c|h$lrqN!m!g?Eux!jt4H;o7ym`+q&=$qw>Wh?!@cB>zg13;@!&}L3g13?132!I=D?CE}FuareU+^gTQ}7u13-CDk2Dm}q3GX70!jt5M z_&r|28{&QB{qQ`ZlMjZM zkh|ceDemy)!elt8yemmSC?@W#Vi+mE?P40tx$aQ!& z`3!gt`8jYec`4jSUIy36E8r#Mm%>ZQFNc?tuYmi>SHlD3*TAdEuZM@oZ-Lj7H^ZCA zTj0&)|G~J|LjEw~Tgm?kZzFGmx062$kC49%?<9W(9wmPR9wXljkCT54H^~1B?;`&O zo+RH5*BW~F|0LW&-VJw=5B%M_9^K?a;2v@pJe&MrcnywCO;1zBA*SfC!Y^*BEJ;gOdf!@kY53BB@e;d$m`+l z%nQ{5<@gdpr4Qh>wt;3GXC77ak?Q03IVR zhsVkNaD#luYu0(}B4391BzX|7HTLfRSHd0SYvC^PFx*Yv2=|cR0?#IIhUbvq5BHKk z1ox5u9j=o<4lf~p8eU5NJiMHI9o$d;3OqpmI=q^EGdx5dgV&RP25%zY4sRy^8s0+w zJ-n5C54?^1H+VaF%ez*8i;!n@Ti!`N2p%OL3XhQ=2#=E=0yoG#@GkPB;7Rgh;M$G7 z`+qLnK|T@gBA)_xlb-_jkQc$T$_pl9$4LNk-rU(lYa;|$UlL1k#B=1$ql%6Q}6!23+^EQ3GO1_3wM+E)2w_w+|$qM zhe`4W5wA7%?*EU%9psP0UF1*0-Q>^1J>(I1HhBj;hx~20m;8OWkNh(HyJ0%{$A~W> zkHbsJ6Yz5KF1VlkXLx}84|p~CpbV?sL*!0)J^65W6ZuGZGx?G57V=}@t>nkS+sG%u z+sO;y5%N>vo#Zp%QSzDa82N?pIQe?~o`pevG2*+(7r~R{OW@kgz5D-ixP$ykxQjdl zcavWS_mFSI@5yG9--P%a@;l*P^84UE@<-r0`M=>MYk9=RaPVR)4kPnBKk{<>y zCm#*>lV`&Nza@`>;e`AP74@>AeVq9r4=jz59O&+(BLncahJ9yUCa1x!yy*0P)%6i{Lrr2Vq|7CBGc; zKJpcCoqRRCgxrt*Q%YWo_;T_FxS#wMc!2yacs2R`@DTam;PvGHfH#pp4sRxZ3f@Bg z0=$(x0&gRK4c<;3g-6I^@J{m2;8F5Vao>-Te}(us`A)b&z8l^}{tG-wo{?$wd+mQxR3kpDb!H@;_5PhOuI|H%tKw%WOwd>)S5LhgsRlK%zXMjn8- zlUKtd zBiuv&20WX5GdzcU3*1Zo1>8rz1Fn;Q11}-}0bWY}8@!xc8)&tcpL`HJK<$geS>Y!?ot#{r}Ca)_CF|uR*+vyaDbezX|J39`aidpG|%jJcs z$YVIat>j-LzK#5QcsqF<^^K4x5#LGP4Udu!8f5jq82P^NIQfBagZxl<7x@wJB>7ml zc31EIKLPF_KMw99_rl%eQ{f)+Y4B|FB6tq@nQ$-pOt_Ey0=P~-4_-pP5MD~Y7+y|( zIowaa0v;f5!ThtD{3^tU$ghFdlmCqV)`15c6FnNai@(?w@3F<(Jz|SL#TMUb^KzT#*z&P^)E0k^Ek0)R3v3>@`Gq!*-D|bmATg`u zt&MS;TM?EUHt%oCr_1I8Y@W1vrp>kcdXB5kS?b4Ob5*9)kIUwc6w0gH=7VkSvH3nW z&$ju#HqWv75Sx2#KGfzuo9}0H-R4f4m)P88^HQ7dZ}W1SA7FF8%@4GBz~;kjUTyQ? zHV@hSAe-0Q{9v0m+1zdOW}A<&d5g^tv3aY_54Cxl%@4DAyUj=1JYw_1ZQg0~Q8tg- z++*{Y&5y8o+~%WgZrJ=tn|Ikf%jQX&kFmM-*Pj0W7n?h5o^5lN&Bxl@ZS$jT?y>ne zn`hg6yv=iLKEdW*n;&a)pUrb@uG>7<<|Q^i&gP{yKi=l$Hb24Uew*jnJYe&QHm|n% zi8c?}+-viCn@_TNlg%gFyxHbcY~Et?e4Dr0e5%dcY<`l>+iiZb%_BDV*}T){1vZb` ze45Q;HlJ?uxXlY~ZrJ=(n|Im#G@B=FuG?J0{YZ`RMK*WX{B)bUY<`B#-8L__xyR-+ zY@TiNGi{z@^RsO3wRwrneKtSa=DN+#wRwrnXWG2f=Cf>GZu9eO?zj2*HV@dm)aKPT zpKbGy%`dWfz0K#?yvgQsZT|oI+aH{V|Ekw~2>mdh~6F5YhH0|G^^g7 z_uz{e+V1W#56O#jl&0eSYRm4#7v0_6O=en6tac~fO{dk+zdNx$omLa6-H9jCX*Ge` zop>OfRuiY)iJQ}DHDTJFSes6(i)eS^@^o5Fkaj2LrPFF+v^#NjI;|!|yAuWJw3-O* zPUNQ3Y67%7aYQ<;CO*3p`=`@t!m~S(kxr|L&hEtbf28WGCOA_6bXrYpr2gr&n$Sr7 z(`hx4k@~08Y62tmPp8$yMe3hUs|kzLKb=++6{&wZttKc^|8!bSOr-wlw3?7e{nKeR z5s~_*(`o`D^-rhO#6#+zPOAxr)IXh86Ah{V@2UEG%=8!Ow3=8*{nKeRp^*Bg(`q6i z^-rhO1VZYcPOFK7)IXh84>D5!bXrXyr2gr&nm9=P(`hwfkou?7YN8$xu3R3@cT1^n7{^_)u7)bs1rs}UI1akhYq-l z8@|*(omMw`sed}HZtzn7bXwimrT*!(x}i(`(`j`hm-?sE>IN?LPp8$5Tk4-qs~fh| zKb=-LYN>xZt!~g#|8!d2n5F)|rRwi9(_f_1>P9T}Pp3~Y)9ce|bwif=r_<_2EcH*P z)eTtcpH8bAuhc)CRySO!e>$yhv{L_cTHRo!{^_*3u}b~ZX>~)D`lr+CMk@7Br_~Kq z>Yq-l8>iGiomMwYssFF3`l}nIod0xM-5{m@>GU~fdVM;rZj@60bXwgYrT*!(x-m-q z(`j`>l=`RB>P9H_Po-rv{`5ID8cRE>@mJE@Db3seC;e>i{Xd}eTa4zzOAEj@nbR(tfD7~7}Rg_*r=?Y5Eq4X?D&!BW6rKeIlkJ95QJ%-XFDLtIhLn)m} z>EEB}eg1x;^tY7WPU%l6{Q;%lqV%hjeu>i0Q2H@SKTPTSD1AGn8!25!>D833qVy6< zS5SHmrDsuk2BixrJ(bdVlpas%F_a!j>EVFt#Ml+qti`YlSo zO6iv<{S2iaqx8d+zK_zkQ@WATb(CIB=_*Pup>zeM=TLeUrDssOkkV5rok!{MlpbSG z7o7k6-(<@Ca)Hc~^~R~YKi9N^^9p7a%$#+uzV@3|8SEG64FkrgS&kmA&1#m{+=x*r zw`09==xoU;oKchPcGgand9!hk++6A+&bp*bs`bY4#WMF@r{>>!_&cLpW^nSlPR(D9 z-73*I{7{+P=DwD@M-Hq>r!sa5ho@%^QF$CB8S0IB{+Q&U=JayZH-Axk<*l~Sa~9oV zqem>tm71h>yj3W-+ql6j^{T8KT@I3?H%`wg(Zd~jcvY554{ucHHrz7N(i=0^J|)i| z;Vn`|P4anJ6`*5!mS1b|N;w9YrO%uvF%7D|wTC-YSuQY1rU? zMGg5`#x+ubn&duJ-#VY2o^@=Ek(=*uUU#KD$~d2m=<^5E=ozt-y5n-9vh)V8UMJ_H zP&Vp~GqZepV=&9BZs)uNJdw!B*kEhsak7)d6iH0(o=xf~QiRN-R8uy1jkjgWV3x4Ps|EeV zjblcr4UOXul9$}A1vU9u5>}|K8M82byoUUkR39+FRE1QiIWkMvSXnR5m?lrcUT_A6wEoz0CiPg0i=*L)n-C1{o zJoq(8U)0yWqOOA3a|$jhm{TyfplqYG%9HZcl=xP#}?BRn=#$Gi@9qvom$EERl<)IJ`~v94@<<-QM`CG{RsJw}e44YNnj2*-=V-%CgDlGC5KQeC;}(x^`$qjk0l4G!+X-P{-h3zrD|p!tO{(|s}yKicH8KptH>X$Ui75xg2_?7 zRe3|^kB_U4J$%l47&)Z(OFwy8N-M?ti)1eyu|&!x*WwUqVJ)%REMMk})_y;2?zP{w zvR^v#Tr2VxEAq(RN4Q8Ljnm|TK@Jm<2suo`zVks=bsp}ixSUR7#gD37dH)ne>l^ch z4u55~R&itIx-FV^N=<%iKRM2S5^fSso!#3kddWs> zE!u6Pr4}9ge$S4xg{1ql2~zUIB6 zF!#$d8wMECKHkUFd606wqlTHr%xp=UArd}a!p&_@ncMPiupK(S8%L0fEM8ReN`~=Q zk-|w|U7b)Dve&rD3|N)rGwS4BqFnluagU63n|#A$Fp!(hCgWZ;^o2K>JwI&S7RFiQ z%UbEt#;3Ab-Mw1O!so4cx2NJ4OP1=Am21>EwM4cT`B3(h_Hq2ne)Zn1Mo9H6D`)hNXixbzd~as{g6gOL zJGRYCWp0fNzsrt^|H=cj^mcU9e8cRdXGk`xlcGuUC8-+MXB;Q*5*Jvet6DQrp*ww`+{4o*pgeUfq zdxUY4RJLbs;2h;MpSN?rEegLoSC_HB=F6^!_9yHfq3n_&SMWKn;R^mqr9IU{ysH0#H802g(FhmpIYUnDOs6AMZFwI@~rxo z)K|7`k!@0rpHc&l8M8oQ%#NO(&Qv*N6;6nW{a__EOV*J^cH*(mJJjI4BL! zn0Mu`y{7&$>Pdh8#{_l$cFE@RrFb%FHk#8?Y!-Nvacx>&{#aGvRU@dRG4E4J%FadM z4&!2x+-|uU7)jOb8;i3%s^Q&w_-#ErBullw+h~*`7RzWap9c)dl1X#p_??epaFCPW zRrUVwJJS9#5v-Jxr`K%_$~^vaV@!cHD$P-yt#RnXR!nXr)v}ue44>>VL*|w))$~93 ztUab!do1TY9#eblXYR2_?eVj*7JH14J)V;u+AXE%Il^5k{xd25jJj`C{4V2c#6KaI zSMF=QfQ61bYy0riG64qEZw3g9}nj`i}}J@tB0dO_ky$=E2B z0UEB z4}UG*A)cyTu63-(Y;?GyhRk;!l519z#|k+~Q{)UvC)68UMo8LJ4TEQ>PI;he8#xPy zho&AZAzD?Y9Hz>niYS}q93;M%@TP*$ssY{mRDE2~F?~R{wsW&th43!5{av+PrE??d zlv(}L>_4f+4E0dFQ@TUwWa%frJ8M6e_u(H5zkJ@2nv}jNBm-1&HVv34SL-)+uWCyUUvW?v(Dh(77wJ+j(@vxG`5vs&>e9 z%UC{Ez5Pz6Q)zN(NIS-->C3j|bD53fJD3*5AK;Jm> zAvrg_?uIhP>orqkT7I+4A>|ZjNIRrX@tKA+Kx5v)8+&Mqkn!vZ=H=BmHBYvvapf8H zm|?aQo_GJ&-)vXolN~Z^Q;R*vNThKihdqX{XHsF~RM;gP_AJ6~Oofe6VLlF9hpZ`eu_2p7p z*>Hr+z}2(dWb+{A{9?HCS*^ynqH2Ki+0!y)TV15UdE2W-sT}Rn{Nl!;@5l@>{Pm@W z%k$ii=0n#P`ugqtFV!y1D42DrJY}g>qlPKDTaAHd${}iA$&ovGYF=pFl=I!P9OEzs zs`5|TS!GV59mdbwRdr;k!T46*$qmq1JJYG1#s-{ohS~vF0_d?#K&RX^VnU}lAyq;ACZYhgAWZk$V`rtqGV+d*|DBQJ)0MAzsEVhMd>L zNHH0|tny5>1s`Jt--+NCRPe#+{L{_8$#_7nQ`PLt%#9dP^T(OZ{vT^^X%pj0mBAV2 z(Wcu@+a_Zk_MdIvfA2Bo{e z%-h=`*~r0vKT^rp7++;WLN*vXw#iiJW_em&*pwk_yYj&GRsY0Z)q9$H&+)28s!k}o zohrK_6Kl4Ycu4Xv_EQDu>71$iyLvvdmiOgRNaobH-beQUc_M0%wZxeB*9& zmaEX@$y3gkpUbW3 zV`-0J;;A*scLe2u_e-gwc`(_WA)6aqvcprdt#0epC#yj`FOka3xL55W_p0o4&7F1f z-2~N}yggk>O%`iaX;hb3|4L6?=9otuaG%lod`lf%ZcBd@H;y~hDs;oJQYmkL6wGZlP{RqO#yn{VnPsXO@l_2a zYGQuyi#;WI?=y9uItYy{8%N7V<0Vti8_>g36h9)oyTIu>)t73gnZoT-Z_T(qwXGzz ztvtPLscbU~EO+$*(tERwaZ09Kl;sHKsSO^f*@+va$p^UAr&hIxcT4ZTQGKpgla!_4 zp+jVws&yh$Z5ZW~Nrc>$jjujc`L2?C_b2i$Q7ZAac|^~-sX9WP7pdHe_34`ToTbD& zva>N+F1ViSRX#e5IG-KnY^;p>LVpZid3fV=mwa9Dm;S-O=r!vz*2iV;lis>wTVv%q z3CmpRlCalQSk)GpwNKZy#>)H64Nlqc_nj}N`$KNTzQDAwDYaHoB&$m5p;Q(o4$>P= zb?J>K^eb-kWrR)|eR|`#epLq-H56w#io(C^;hnO|F{!iiEb}}_X-=bs2$#Op)VW-Wx+z0_@YO@lI-l*IKRW2lzo_b~o$sd0YX)@b zW0QJgbw)wATz5t0eLr~ZjPSeqq)(kSGT)ccYUFb1pG7Zcc%(~c+JK#h;(Qd;%W+=K zD3Z1_qpKv^`D~#khxt;M3v%q&dfnzV#|dTRU$kOGjd5}Qfh&)ck06WWBgkU&BS^EJ z`A4i6+F0^gk@KMso!5*}hYWwDij!@AjZv@pHFM3kdgJPT#uVub1>s0zNXzQ(p4u(r z#)|g~B$bVn^E$P@qBqVOh`QG#GuJ#BT0QWhs(*!652~tqM6z)hKmIP`#Rgk0D{q`0 zj;!6LGJI}`RB?TLpE25Ar#3j+*rtBi zo+YPqdX~$)k`o)G&eOvk1vSa5R~{g>eQuz{JTI-KncqFt*Z$ExNYhpxV!0}Ad&I1- z8M3duRUzFyA*vnPW%QONQPBxQwwfU>&3Ta8o)&r`2@O+w=Iw99p8_9OF4 z2y%d`;)cJ->g|lWFM}884W~KOGx+T1q>v$f(%Z|=*Bh>qOK|3i(rKg1XE#jq$mUaY z^^LXelUL5x8^;}>H%ya{KO(`oY62Git~-he#~M9+ncPp0Ebc#FR_WsEN|YmO`jpdL zEAQ`ldQO$IC}S_4r>*k6BuBVfRrda!oADgpeQq}L9xVrz);Qjr^Oa;6_it6h;FRuj zb9RQ)+;EAjZgbTYszuJ~ z84rsZ7Ry7M3^B*a0zpABY8p1(Gn@WiAO zo(q0CqaiCxva5Q*)(%DHL!g}5!_`XPNuQ`Gb@204hql1NL5q@sWTh1jxLf3M}Ol5xk#+Ls3kp7zbZD0pOje`yOf z0;-WxZ!A-VydZy+^Un48qn)>JsC~C;OGp2UrmM{K#;aubNRD1PO8y?S;_QM(Uo!uY zl||NoSzDYDm+x$-ddTLBs*Y0`c1+8-NM&lZQq`l=ItH9H+PvW9-F|A~;tWg@3ndSSxTE4?(~>Xi;Av|j0p z6J0Vir24ZI&ssCZHznXNtB!3&`Lfuq%Di0Z2`Qg&lm zsuus>ZD8wgO=>WjW_^@lu2;VJp_)FI%SYEcx`(g3Nyb$9JVm8S2QY)>C`!$h zMsw*b>i|Zoon=rsGRYh{v?lwuSw0PH=LHe+vz$@MgsYAhU}#+oE~0aeQC#> zFFVJo&qw4sT)NOXA>zEgR&HNEIM)mDgr)A29I`tJT^)#X8aUV(Po|kn3sjIa{B2Vk%rMU{iuNKt&KEiqJ@sf*_P0jo4 zA1izzc}QcGN{y_JsK!gFug_U~klZ#3*6s~Srd6-%4OdHvyMr$pCw?Gt@t!#G?9N7c3msY4c>PO==Sae0PuXzEb6sIk%f z23&YUaFCoxb^B|m%93k-P)EOgRLXW1rD5bmI&0O}v(!4xUh@oA$)~5gj80kBHA{c8 zS*#guz3#Q(!MW!Aq+@_?o{nW_hNc=+r)pe>K8n*XV4N>#a&QaL;$Imlv6Fe`VnIsBxb zR|=fZ4jEQIL^_Nr&wEw7Vr zZoM&}E)-*|=CayCnEj+*90Y~Gh;EWJ^tqH>Gb?c9Grmi#qSZeH7>QUF=_kP_vsur|xc zDo_4J(l2DJACM(a&{dP=-9=e$HI%QFAW6x-GNAu=xAP(yxo3W{+gY}4xATHASIJgM zZ&~O(_P@@W*=h)F96DOCr!Z0g>kI7>Av(y5nbwgdJI@`H22bKFE-vXUud|p^=&4GjONMp*quY35dlI_m*>HaEn*zVyg#W2NxM`bLBKOswY zP{XcD%hS&W-FaHnc>EnHq6#SJ7%)J}ke}5({1n+au|&G95l}ru-AX=JeN84BJ&Ou* z(O2o=_vBeSxJ1pICw&yGsC&&>+bEF@r?}NEdhJ{4^MO6D^ph`kG+d>|zTm*_;a^@W zt#zK4e-Za$=HtoEPkOE&X%C}bu5vU-q+yy>xb12QJTX_QY2Ck4^C|QDI}MpL8l;&0 zGf$G2-s>yY=lwGImQRJW=bdJWq-6`9lP6iNz^nvTI){#XR-M9c9G4zotaz)tTb;@a z)#tuFg_Hhk9#6IL3$nl7Fi7=|4Xf4oA9NaT${9=hA>!r~uBdx>gF3>dLXT>e zhFR{=SF*+>o6UZ=U-$6E)@HBTtS-LcvlY~Bt-8(XPpNhcZ`k>Yx*k*M)Own^m?jH> zwu!YoN0>7v^?jM*h6(aT1oKhtL3M#A1`m@#RG^SbB7i`2kiuI$L5 zJN#)?6#0lR_PV+X^Rv{Q+WPY28JR_s-gMT;H(k=v-^jORjK?KXMX5#I;z|EqKB=g2 z=15up>L(9&wMEkT8}(@Dm%+|!XUV0PKi*k8L%q&+*3OY_`Byn>)ylv5oQ-*N&(}$u zb!t*Bjgg(6H=Exi$NWWaG|QyE`BYhFRl}U2Hs+P8f(WsqUyvHx{KB(cc_`zb%SI}kt~Ah;X-$4@>R~dJ#r_pmMwRw zfy8)QeRZLs&{Z_)73Z~w%0BXSj!bQ}v-Vnfuh$qExm#7kg$rE?d5%$!FcIhensa}j zOa6G|PmVe1*&-z_k`F#ma`uJcLOMd44oXL;1`mZ)|=T3X1g!Y7i;|6%Xl1yoEx2v9GGii#JI)_R73pjHT=R; z{Ibos{g=dwbwPxbSOvu^#b|1w8uS_Zzt!v=reE#$nT$Q&GN(%RP`2_!`*^+NqM<;+ zTBE6v5l5@&Gn9$868IK1d&^FtLW+_M?AyiJ%UZ~8a1|#wviA_*Mc=S=!5RR%N>`2azM?tBeZUZ&)9zR2d z5ir$E_%9+yU2inMtRh)g1<-ghimjQM$x-mCezACr-$8EsLB!oCRwv1X}H2>&p z%K8#zCsNie_O8Z@$WI}T^rtWlE8;joh~uk2@JcyF9Q6Y%v0eVW)5cY%=PCt@8oZR&6gzW<{>5T{ZKBBTP0Pjp|24TE%U<# zN-*w}2Tadzy{!CL72ZX~%u_a$t|2SPAj8ds0oO*;0m{Q=L_(x;8j**7GlCZjc9S8B zJlT0oH|~)9jbrv0&3h%VDD7FJS>#3IqFyf;&F>MCeq_SX0OMo(UFcU-LtMBrofT;# zNi2rKWunZYoRQn?P50qw9Vn}kEP5F0_isxM*(Ju}cqP@HdMt)Y)9P~^4@bg`Oxf5J za{-fxZF1K#vs6Hs1_-*9OVCa0uM<84NcMJFdaBl=EIP29*Dp0=V^K*r%e-eFuMm%s z-A40mGIba6NAwWu<9Ln=YW|rJilqTt$t*T`N*Tv_Ek zs38j)g#2!ji0F`8R6G+@QGwtQYVgWa40;UmRA;RtL!0j`bAAF-VH1owq09{ET~n3G zZLm6YiJ}#Gu|#;{8pgA|Ye?7kIWE`Q@s2(G#cs%T=9{d~q=)}W-!{)H7OSEuJ$Qs_ z&1j$B$fIntX>nW&Xfp(UnT%)?M7T>enI6XjzP%N$*D=7=2cX;Tu=fG>X>05z##iXh z9skqRMiDCXiQt@gGkUxdwrpwqQ}{;ecsK8xmuHsklNNK>`w=@@XsF=*6!C|F;y+P~ zzT=1w?{U^~spX-LKjR3K7=OJ*_6zZiQS>2;2>W&DNkr(qtpJ>XeI6(Z#m35c1J)1A zTFrv}#|b=OgIAPuo@D!pFn&)*RL z0!Qmad*YwqiSHoFflt;iYlsv5T~^=he!=%1B?f|g!N;>}$lvBMY9ft9$LTK3@nsiuXfGU@eLwWMS(a=M)20Dl}t5q!EaDflSLbSkiXAVjy3$eG|LF8-TD z-*H#S(tBCY$jVqPl8vT2d37-H&Rj5|H@&C)e}D)ae#JDAzk&G}AHCNZx9QsHc&STw z`I|eoq|*CbA)0!2M%fAdG*p1gfNWt3J>yBOa9X6W*FIh&pHnstk!U##HXG?8^Q5no zL+!l^bmJvrO~~v>v1gfyBZ&vKfjdu!}y6~;u1y8D!-)5-k;qdDjJU32*UWs zs76kI66s|r>FwRq)%+BG@78}t_xg`Y@7Fz@{#FXrmN}iCu7<%{FQj|5jLQ{Ce5LS{ za@Bvq_O)g~n-D(~PLWegtCwj_)aZ{w@s^(1-RC>Sf~rI^vo^t4S7)a9i!wb54#Lf% zx4IUZeOTZvh@zf~FBc}F@VG{@{lcWMQ_B@h8d!KNCxh^z{a_ z;4`DCnSzRuL@$H_Xz9G5%w5vcO$*8@I1nl_rEhct#|sQx=SgC&*)Db%G@J>FOznp_ zs-Xd5=z%q5eqWw}TMF_DuaiX?R13#&u$I}eJTbpj;S_ubJ^YX9Q`Vgcy{TvVba=z_ z4T?*KPS%XUm)Y)9%Uiw5R4Ys&vZOzlz~jF%V11!Yp!SnAmA^r`8MD+_jRI*Gum}WA z$D(y9rA5(!v$oUc2U6mtK0&+#&pAE7BcuAif#)|U6aNaH-K=A~!FdEc57i%yACX4? z8+cCo8hEbn37#p|AqPFjIp7S997z2APOk zGY>kG8G{7o%}YUFUi}H}K2fC?L2+5`JeS4QBdYAV>+6pv1BDt@1}z6<8E%#2I7PHR zl}ex29o^fXD);lA>GOTYCecq(VyZ|P1$)7E zS-_$&3gb9Irjo9m?&%{Ewap zsig8_Z}&b35&e(&@o!MilJa!QU1P;LChyPB&=Kn<tQX4J7dq@H+F z^XuQh+y8$I@8@HUYX#oB*^>NU!0Y)B;bj*g6~EVDNjMU}WAfkaI9}*Qtc(i3!GexZ zuJ~A|V-;9y{~gVx7K!^825K^f-%8;2^rLYr!>aIG0-^jn{0bM<@P=-K z7JiS`?7%wPr3F8*qReZ4+YR0`@HJP^p6DPpU!Z;ONNC?lK#Qu|of6df;U_pva0HwQ zeyrs$97{a?P#+=N!HT~fV*dtUk*El*x^s6KRp-G6J6#~DpOr#5##^q76)PU;o9Enwjrg27F%63ysz zsQg{dH%iXMUm0iM0DDU?Hk*Sg9T?6Twdl8H-~=~kDy>7Qd)s7~PenG#Fkgc8Cj2@X z6)li6yd{COGX-fK*;-!Px4fgFW1|fF{~XFAvh0e#D-=2cGO-0K_JWRQj+9^4XIQX) zsn$dZdxUZ_GoI-uev~C3IA9$J#)f=wpP*9K-LaDWjR(IsH`91#bD(VSkArEOFYVgF zJjP#He7og9p!k&I-uR}+oII-iSBm)mxZKm}Z4v((| zV}5egr?vD7%IVlo@zNY?JTo7+aH})?wy&}4^zdd*x}HwHUdA(iP6yQY>cCfjLfWWv zLph_)3{4dP;@<}&z~$;c&FRvd3&r+rme=O@86_1_L%O< z8>#0;IiHR+ySgws6VHP;qgUesb;zIphJW$jyP%)&rN%R>Bb~lQ;}`GvQr_ppO1dHk z)8^)iJ+DdZ`t<6QNT+x1xA4>~xEG#~aMOe?h0n2Js}^>g@LoE)Q7YM`3cpQIxRb!K zm0dRi`$DhTCq1R+wmNM4qH-O9Ud$DPGCiU#XU0mtWC!oHh9^`V%ZQ?J<1XP0z#0Bg zFgh2D%)Zctf#@7uICjd;(!SS(GUaHH(KMTkM9cYeAy|pJnyBLFg_H_!G^4X&Z@WX6 z0+24g&HhVD@!`6-)cUkjJc}rbp@{7cZ*bPpdTU8}`YML0YK0$4)x#82Y71;ORrswJ z1&B8Z3g=W6!4JV4M}j$U{9=41NzmK%d5Y*rz};!ckLfy&PU{_KCse$t8~NevbmL1n zJRSQ(l|FT~Y(M&qdtQu(s729N*RXwMvW4T?XS;@d((Rq`(DqX2kfZW>$cj$L8YXIf zq%$*I8jRL@9m=^D6Jt|{c>)D*&dms>+1Nnmd=HlZ z@m|D5d5`_d@1)P{BeQ}_F!4r)6g?s72QB)O;Clu(W)U8LbBV?fb9#n7QsJKv+tA&s zQugB%aezPlRetLgSulMi#?Uv^^$ZBwePd7R6+X_4eqZ@x^szsZ!Jx_A_?n4`66q5< z-@mv#J4+mM3a!ta9y}->N@|(5gAR#xPTv#||064NftxgC+Ef=Dxc2DH@Bv740G8`p z0G@o^`Qhf!wO9+=XQq>$?UqBqQRU_7>Vt~kLooI|X9?$1mjbc8O58WO9Kz}9*qM;0l0UwLybfPb zb89C9B|-(KXi@P(+4hhbGO;)icpFKOw~9X2UU(yK&e@g-``H}4;`~edIGKkY`|0VV zTH_#lWyJwxgMnzIvqqLJaH?4X& z0mGmW`k3ev***a!9DzPhHtu89?HRIO2u8mvPK`suGlS#}cc0IU z8;-qDUX5vOvfG>Vx(MT2{i5vBi$2q3-%4##layl*|C&CXKjCcjOZEm8@2)3=w{87=WMym3*g&7z_F;M;mVO+rv5hhq?Tsz`m4E)|9nx@Y zT35mQ3(k(%y#ld69k-MOJgJVGq0Mx;Hr}|t-e%j5bo+Y@0PVqY{npQ=WVc3T+yt5o zph;D3Bwp!Kvw$fY$%8}zW!yA|U?gosgl5%xL0-hGN}gVx);*H9eVn3HiOk_u2-JrZ z+p__$Q68JQ@nt<|k4iO!d7sAn4I3%o#AQaMRuPDE7*^c|Z>o(s54f#$EKQLZGCilu zzM-66$uP^7NN*#Z{T7YlP@He&Y2b)EKhp82J$Htg_P+fk`#9^07J2LlVxqlS5KIB- zNpmC5NJPprXyP|Y2advz;t&1Eqb3R>)>#Mc3l&F~WONB}e90UsK?^fu4|~aITAR$a z?S0|(!Pt}iN{Q(>A<2&*55Fw6Pjh^3p8J&|d0RsuvP#o$psXo-Al0jEs~P0JX6(64 zseh#pxPxgQ+e7JEpzKa3+j`U5DD8^hdD?pGHUGM%^ciGF@T_h-aGF`w`g-wAnOt-C zz1;Ox9M|@Ea##DKO_+P>o3%{UGFrL4-CYO&zyrhjALWDl5%7*>3;y7g|@yWqY=_F{m+JFcqD``gEzRr=wG{+8YOxyX6GPYw0OO zX?n7M1~7P=b^I}@AEoHaM$@;+ik~s_)o3yZN0e7L=sjfI4e%cOWQ;^ule9-!$Uytu z>uSG@_bR!pQ!ym_askotI}_0@>)K+5M=ha6BgBs%pR;>~?FTJ;MW(!3*LzuFwHL_? zqM<0md1lG8y+|>7qVt?+X9v2-=e(QpY%eNtUZ=_PbMtp_uRj8fOxh_(dDCi^&o!E5 z5f5z(?aI7inn_SkNJ%iQv)9nO1hbL(=wBt$Al{ch{#8tYuDD`Ac)Y1M`;>=?l5?@H zJV@S^uy~g!_-14vml$^sKcO1q(rJ-fSV7(hib@u+UMa+H6kgowZh!DNy6kl0;nn^~*J;Mj zTbYGvO{=+@n5@BQ`TL#digJ?clTJ}D)s+R~WI^%)9z}4&)#Tyed09JgRQqC`)diMi#+6wnbRRjB4_s+}-vQbeRq-T2UIdS%!-hF+o8AH`O_lTc)|1-{$?2jRVAm*>w`i z^2a7{(j)ZZyka&@DX7TOm6HLgH_s|WUB{g&(}>AAM*M2i3xe6E5&NAG9w!wz_VHx) zQg9o;gGQ6`oYh06IAYE~Jr8pJe}??2wBNX1sbeLAxf!A{T!;tr3>>;-R<+ZjOemx{ z6Y7G=PW01G^b|%%rcKhVIY#>opmHf^A0AIB*t>p1-1;%qzQ26Fht( z!(nf|N?KmH#k?O5C;)rR5jpyiZW|3JKcWt3op zFWL_hL&Y-cK6?+hy@|)4&to(dP*QN7&r@3dT+-Z@FQjFmP_ZUSeLhB|_;Ds|jOw&K zmRq1ia{xIe1wAtd%7u-y_9jOsKxrw-+g+k%D=~Suh_N7qUJ|gj ziMWJfrkU1XWdZ9-&d0RmJXXugzZp#r%0OyA)s~;DQTcmNG#PcrDc^8u}p2x>Yl%gv()gglLpGazFaeZug@rObLO!#4)V+ zQ-{EWJB>P4*mEBe%&>w^fk)7oXFso85`)-AMMYe<~FUBoO8~;^mGzH^ZWjij<|n`mI3{ofC|WXtN(@|2JUujb90) zkq(U1>{fkoC`ES?c_8w-`xyn9T;duMy0I|&l!%dlB}dy9mITVy;;{`BDE{33bM`jB z^}gTwKrAM??%_b_R&K#zEHmv-o#~2m1#y^*tQYYI5-(=CZzcS^|2e2j7UxHu7=Z8L z51k=SI&6uy+uyo^K`L7lh^BMV^GJK%{dBMF1C|`y>}tY(y*lAuB!9st3%sbuX4~I- z7v|cWkUuRW5F2%xdk>L)EFYpkUgvn?T^k7@?{J?nn&gmK)|zkW;T#w?~#B35Vn8ri2}`E;cbu2}LC(k$n5ELh}8HiXcJFPyS>}t?R@V z;+=LamNKJhIF$#>4o!@W`bs(}6D-RP-p468hRj>7C|0*Ex?lax#enG%{Ip%Ma>vhQ&nfjS9P5|}4}Y9?kQMI~HExWx&F z><57yjyA8C)G*IzzD}BN*SX20!jfD5$&|@jl|jf33kjjmE|q9uP25HzBT-Csf#{to zUJjHp)akE@ZN1?2MgI(xHOr`i2sI`t;g18qF18REBWbk-MH&nYMvMkeFdU% zq#2QI{{mM!IY&ox43yFI85x9w{7}o3bxJwdZ=dzKKp^+pAiPA4ICHAVulc`r(x>D5 z)$!AWyp5)FW+s#a?K3yI+>mc;XgFk4gt6iFeUd%?UfM2rKOC3SuwJ`;qqG5=vCknv zoshM^OGvo)w|VO2I+UN-BIT11x?Y987X|>kA1ur6t%U7ikd@%Gkr&}nQzX^JdpwfV zCzbxgNlkFxyoqQRMRo)NpK1UJL*q=1-+22e4BwKwmoZE zS64yDqMd3(BoKYh0i!F_#}1O@7TmN!!l?y^y9GZ{5W;s9Ka@KWlKXq7K^le8SxBU> zTc z>>0ud3$D*w^s+ztXQ8C#eG5y?vRBw38z^)qM}7*{hb9Fsc~TKrcz5iEu7bB0oDo~T z1MMdANiVakD|emQ_Hl2x+ZRIBu)EQiarf9~2vf8kl3LBOcbN|F3yI1rxtGW9l z`aTzNjGO{p3TwMh^>On;XW!6_KBs^ZY17BP1N19=D3}-Rh&GGh;YfMwLcgXvxWxO4 zvWB_H9AJCUcXd2Mp-g~^-uAx7zD9uuavzdP7OfRf0ekxO@iC-0{bg0%Ckughxs6M>x>N zEJ1J0vwb)TS!-lw9VSb0bfH(yy9qRb_VFX-SrmO(hJmXSjJtlzyR3;=a-$t}9Ix@r z@cS=OnHJopMDCOALOX@gE2kCVyS`mh%{!uNa6&PhgDo%^9a)s4pW(^A|82j;4P}C9VFv|I$haGK%iT|+(a8WMG&*$JexR9ALaCcZ zin}_7!>RQ#_(kFge*KVpAbJ%LuQAJR&!SGqaWG#@3Y;~`=a0@Q!E4rt^(MY3I;o@x z(ce6Y7wSGm(32rY>3t3t|LOh}0+d>qSZ(%r`atLJl9dPRlEQRfw?zr^k$X(ZFX!t= z%4#Z4ba-gXu^S+zfsy+}FceTv(~0Db(5JMxoJf>@2;lzcq@3vOauHxvMTzKt zE9=SwLPJWK=s4CHcSPK4p(^94bp>xP{EXg@W3B{PN|vo@JJiiu^tO3_Fl{{qH!?1E zLT4Vi<`ys|#u`|c5tA=q3B3xaJb@Ke>wQ(mg9YaSfm73k=*nGo9!`nHT&fbEi{9$; zCD2V*1mzvSgf4*WH$Or`u||`%8kbfWO})UPND85UjfK5bp!-Gs`Q(=cTONy;Pa2sF z)*W)PT!h^uIw>`*2QpH(kSfs^Inko9`5Q-NPY&Hm>hn(ONlxk@7UYsU9#fo0_Mlko zgz29>a}6@<7D8$TngyStmF72rDq!8<6I@WU$L>ODQ)dgO#aEE#@{ag;UO3U0opxDx zi99)O)cgY>6(-S0dp;KgN_BshPDsDhflKi-P{;0drl~4ZXq$eU`Le7edoA3gUbV(} zJ8}9|=v}UFts@56CCkRO+og@rBeGKenaJ!nhyVxXPgS2Kx0Ki4d7#q*9E$o~s+iGK zp+=<3{<)Nrxd0_a7b^(>)lVQ*_7LDZ*d%@={KbqlwPneZ;|?ftUNd@@tSiolE|}Kb z74|B#I_3m)8vB8zGMt2DMbXX;A%L$G9ZWjjFrSU0*7)BQl_Ae{|HnIU$sKk&X6j3V z5oU$#-KJorns{ej-nLB>$Nl7xaej?=r!(!z&U~L#wIT9T=?5lW)sK$BF8!i{Vc#{H zu8>;vW=V%1<~EJZY_=p1OU> z&Hi@@VYqe_qiLGTykFf{9KVbgJp!9irj$={*IJ@SJ}PpGO`oqJH?fQ1Vy9B>x2UXHe8C`w!Er5uC?HF-Pm zgxZEkf`I(C55R>R$XpbIUEw7t%eQ?Hu;OAxKs^$AWlT`ZU$H;`STgAaJme|-rxm|3 z@r_>2CgGes_H0T(C`$!~)+f{aj*+~pfX@w>f^zF8l97FOA7f%Psy+hiYbC-&fU`IqzO?(SI zw%hJhJ^E5%^_Q45^7mmJ+7v%TVq$!ieIGfTB^H7cP<+`a-w+xgOZ7qVSMiFKP(R1M z%ci-uFBDmA2_rohIi$x;$71~irBupo6${T z*&`K!BbTwe8y+2maS{@X#C9QanfPx>00jF$@F`%C+P)GyPCB<}$!Z_wlG8E7oxh@m z`?*H-E?LJHM@PH|mW0dv9eLt%dr^f%UT;!dHT;r&(GC)2uUwQi_8?&3_C4c8=*@e| zA6fEG@~4UEdY`@9lCc0UZhOe*cO>pCrMz{f8+VH!^GE){CnIIwNmn}}dxh*!QNv2P z@YL?>m&zBe7F)Y4Te7imi2 z&Nq9)+-NBx_Qb7<6Ey$I&8$DSBt`nz2byJU-Rrn60Z4n!v+zMCOBeK_K8#TTE0ETH z57!T9EZUEPE(e9pas`o#>bvD~G^MCAs0n&8nqQ}JNaz$%R7pvp8}Ja9o2+C+X|$_@ zjc);a(OQS4D!o#oG)ujYc*RoJ+0}0gVBupK7Cq5VrMxh&^HoCVV-gf!MUgrs&AuL( zmot3Gh5Kf}FxU@fa5-+pGLDVivFtdVxe<19&E3;f>NIW=VxL~^^xn|sx0a|vu%;!F z9v6=+`_{kZ>Mt$6Tp^jbogxDpxbh-35#h*jZmjIXVCa-)K z-o(m)Q(@{rtI;gB7}v@CDZ=dIi#8sx_OYPHOF*AQ3^-@Mn5K!9t#gHmk4wMaGh?IP zr?AJ)Xad04sE6bQ!kgz-QPq z3B|{e?ykQ%znj2k?gt8=W^AeKRC0UuYK2NiKWaT40y8gha{kcX!fU;otlM64cJ z-}X@V`Zn>NTAxFc%Kjttc;vfc8}T1w;Br!u;!2HI3hCx`6OB0zix;17>kB*!aEj4J zu)2>nI|ujBWsUtHBKycYK4oY@}?2J&2w?y2K%CO?rtFdA(&y%lXK;p|k3+_~ zbndWAZ~Hj2ZF^S#PU5=M-@|PmXY}v1#(xs z#RvG?T90jOH452%w)W<)k52ru_e3v|$Kf6EY1=2g+cxwo%x}y8l-IGNxR5OToS-g) z)4=}c?mzd3W4RoE4DukFR~Vg^UdRRZg;8^0)Xa=l4i+m)bXr!_cS<1&=iowa6@Y~V zvrnt%dnJ(>9Iko!-~_ED&i;PwTYyw{7gz_Uf^PY1@me z_wo-~`-_IY;ZJL8Yafu$XJsg`dFW?_`8(1MrfuRLBVjJ#h_zY~g|LpaO;$f%2B+<{ zCZrR{DolIZnvg;0ltR)b3?$?&1SbRS%^z~WKe$vCc<%H+dQrA&O0T8pgsBENdp4mZsN?R_4f#8q1Dpd1ll% zG6)@^M6x}g7Q+a2(GBxtiGwD09s4Q}naKw~T>WZtG@C5jWPxP89JDrYOMbDnHNZ6s zxHZrjYh!?WWZE_!Pj`+B4Bc(!v;B(W(CTkFq5Yf9p<9FbJMmw-tamzPgz#`F>Xh@= zZ5vN9+uFawHP6M?duIMY;);j95lCwz_9Qd^t)N9wD)=mzzr##BNF9MlX9-t@!EEFT z0|?L%(T56`bU?9@VIcFFj=6upk$cxeu3ib>BlUHmaTr0>59w5^gC(UBm?0miPjSz5rX)p*6kK!sFTnh=PJc;WxQN zx<<*Rl#XfnqOM*PUur&osV~^Dn{E^JqxG^FH&zz3hA$RF&t-wM_qZLrFAb;KFPLj< zdvV8A=qy@gKxNZ?k6pG<8BjtWh$PhVTAvQr{ghbup6pZ&L-3=tyw67|Gww-r}^&(ERaT@Bp)5%bbCHA7S9}{VeFb05VQWqL)@!fNp#Hr@F;>D zHzl|!e>bvwRR1|AaSi-gMpHYngwEwtuzsWHRiAP1+CpO$pKyy!dx4u&bS+~4CgNfJ zHbTE)jcQFNhN?zU(OtxjI=9H$tEO9#QPge}*(gQ8KVD8sjT#-gw2(@TRd4HRzM}I) zIF+73ao#rZF&I_n@lxlts?I{|b3og+w1}lLwVBk`o7#MQedz^Yr8>DmTxg6Ks*|_v z`VAPRzOVYvQS}`pR$%-b@U|`WHF4pT_&NF8whu%v`CH$%?Z+4PZ!PAuS^u{S`@e0q zwZ${XwG13cCyXW6vtTOb)1x=@RQ$sqvHkIr8AykYBXNKJ?)WN_^}LJ3C-DA<#5?&X z#CNLFjkM~Cbok>rs(6#UVn*xm3rtPbDpIILCS=fBpTb4Zry?B_)HV3zpU~~Tl-(;X zrJDFC)r5~LOx5c=^$I`qKdavRsM>kgufI;fr`B(J>1JAQ!WrhJD1vwZhz8t!F((sT zRAI4w2>ylJDlRJ;r7vK8v~no1Xq2p#xUbpQOY9M>K!e$r+c!Y`vUhaN5qWysg*qi% zD=Z~;tlTWjU0n{ZYuAY!UQ@eGq6t?fHQ{j}Y@X{vs*CSCkXpQj;@p0PA}JQ<=0{Rns$d1=c>?=Ff*7)l?Bk_zDj=CM_45Qj88`aX!rQSlc2{Q2s44+G9%#b^B(fUl02$+n&!z|F_f4f~c zH#z>YUYwX5NiL(AA(e`Plrn;-NGSt|l9V!j6XXCz`-Dm<*8O~klD|SWOGt9hk9{r@ zSu~IuRD@tG`@~?3<6~_19^b)Nof@SUu}FvxFa`&QO5>RmTBi2#s)4YID*3vyFZ_X? zE0WLd_Zb7RxM+rG&^S9QFen^eGn4zHguQ5#I;+M{BI~o=D!>QpQG@jo&(<(F$$HmD;S4_QMO1!!bUWz?qOh^zaH_3(;1uXnUKeq2= zvju|(19Dw^M+u5J)6!1m9_w*M<( zKg+TOkR%s56)w_3j6?ELW+Y|wyx(L838!>f>+7!np-9BVyPiI>r%wuD?-HMrQz@` zOys-=RqRyRJfA8)-JQg-%;ax*b_thX$(^G!jNGZ&bw=)k*^NMEe!HzxhGM^c4fVb-14!%}3AraYF3>Fit-6D=of-j}zh{F9 z8p>QHMF={*7{oP4wYn#AouJ$#D7Ob1gDQQ%P-0J^H5tr~*+Sql?lLTiaW|S@;gzwM z(Q}joY#<8Ztf3vj_=^2xy|~-8vXEcyBWEyoZy@b3{G?&{6Y1gEvI{nsS;L2eJWnv2 z#H9d5V)IPDHMQ^I_;tJ{MPRj(fW!_tTQ>!6rmvc ziu&I4@{A47eJ(mnkNV0bk8f-eWyaB0&gxutSX3BCU-|UHQ*U&&nUUu5*KYsE??t1L zRG+#0wCYRGa+Mp?Tz<>*{zIbRNNS0>eE!gdC%C%KG-k*m2n;Jt>Ax~V!dR;ZFksyZ)&v2LnPEvn88SJl}@Rjxu&Yu^ebnK7&t z#46cf;zPNK7y0MP#~$ScbciNmKe9_2Q~FO_2yF)Xj~N{#W-{g=TG5u4y2IF|Mxr;N z`C!4>!do7}13H*PkOj8HdI=uV!7PGUo+Z{%m|hJ(p-EnbH9_*>Yaw?T{uG5Np)W16 zf6NNQ0dzl(IxCJNr+n3GKN|({bXRULHxl~MV-Th0llR!!Oy%zM7Le<8uY^B}FHJW| zAa+L~w(k7#$rS$hh|nO~EXxHPE}fHGd*GG8!Uq8x0nJ$AlT1uid1J?4Ci`KafGt2@ z{0%}!3|A}3q!9swiJ;yUiEw|TMV{F?vvS>>iMT^uX;Y0ohQ%Je4fUO;IHjzjd}1_@fdwe`0J`hN(+m< zp-OPBuTFoG5;T>79kV+dI+Byv1n9^zUNz`k_(fPlPr!ki3*UHgARbf#SDXe{oB>y? zEP*r5fIHXO_ue863uhLzy>&)9E zk8L>p*w29cJ1YSFJEI_sqg|+nTTbs51$wtc#-JvtRF<-7k^4o z_;bn4!h)-a!X95s{=U_{jOKHQW0YYL{FUx6`;^)ngT}@$$`N;#QBQYD4fSp#_UUE=HUM3HG6~a_}Pka`rz~2pB|e}*E&p5 z^{qi-UJnf+6dKfN<{pR*&IsiGHL{~Kau79O2E_=oczFfsP#jI?8=mPG@nNVv@gkCv z^d^dJMg^EzNwktK7--H)*Y|c`Bf2es7h0QAc)ngoSRczaScd)Aa<1c`9~m91g>yLjl)#H~n14bX3CYM=Z+-CS+ zEVlSwt!;1CD*UD5D_Dt%f-gxj=nk##vCmi9dbhbD9y-oPvlHu4P5)c$$C&a7cwGHl z>@(}>e+t1jWiKZJxfXp+@ouG#FNGQqS4!(?B8-C?$J=BFC!>g?Aj?|CjrHek8S9Pa z3YEfwnz;!Hm%~OR8)8xUbopkMClz5Z37lq_InMUA9+%PxEuqKu!yB zn2bdLlSoL=D@2!7%x;&QZWx?x^%eK-*`3U~T}0(cejmmz|vi-f$3 zGx>9+mp|9z=NP&ady2K!(S_OZQ!DV3Rh8kZ^!{%kI(S_mf9hHc5QsPCU3j;+=J^Y@ zgUhq}b6jz0Y-6bii;iV> zDbpyi->JERQ{#vW5zMPP-SO6;7>6{P^Hr0h1ujMRis#=4-@qzcHhl}yYT zwG^^yKr&c`p)U8n|g|Ob~or~ z`?kx^d$9F)$@k#oE6|||n4SHQfFt*Bh1oIv2-^TgecJ}hSklAeWRc^8_1VAvo{q_f z#4+~s7i+&Uh>ImIQ=7+Pt#@SBi7@$j3IDD&&dH^%_8O)sc$NNWcNKN})W6-2;2TQn z_Ra3CG66$g%r&W*SRMRRs2Uxpm8W58iEu z@osk9-P#WIT35s_Uiu{~e;FOV61kB6>@g6NX*{($_mF?p013C*-<5@RM#mJ_UR<`> zI=~KVXox;%^7`S}EwZ-i}-7V^7Z5)oV93}+1}dK_3q(9oaJBd#7)~D`Fomw|9c$+HQ&`)#Ti5T zlbnu2;8)V+#EeuPm-YoWr0|!N{V>TsO68(K5cPSx!-!=aJT%lvX z{gdf}rFm$_9JB4RCtNG2(aYlBNtWfaYbs{f)>M_r-7a#?V2S?)AuiE=ucfSNRPH4F z_+}q_>jCQ>|8fr*g4O|h=NF1>K$^Yn8a~r_Ed!rC8tFKYg75`c+k^qw^RHw7?^n(| zQO(%TP*4NJcjyzqXcz<}WgS=i*5OxNNznv+BI)J+?#Ql^6q+f_Hl1nz2XeSy5c!3K z)wKVVX`g2-;ieT54+gC5s|KpH(ck8vlKsFZiigdC;it=bm4!2eK_F$#tQe~?XbR$B z`sH>Gvc=)Y4MT;9zQuAEHhBKJao%2Bk5*3Y+zwSO51A#fDA$WnfB7e6J*ub4JN5{W zl+d?b*WSguwo^q)Pqnek>FkdbkCShT^8E)D{)%f)q3YMjpte7HDF|{8nC)XLB^YUQ zc0m>|DDUE(?;TRkZ~c=k=N8dJaK7;&Oe(zmnVr|tl-($~Sh1t?RO7iA(@G%3%lP_N z3?o(9$&unp3ozEBOD!hW7W*MzH5H{H&O7LIl`Z_m1-o}|HgKTxizTxN>{(ha3uKc?!_u*kIGRP0rNO%+&4VE=(R_U_TE4!w_NZ zf=t%tGXOc1U1|)vE&JB^He@09IX>UTzmBKvGUi-2`6?%@Uu;YnOg4F)k^GouaLyJL zxJlN@au^i}DEMNx(DdGtX85Bc{vfOPOxf@78o6RV>TbQU zi@#EopDUhOfr4Fg9}#+&6|>_t3%&1Zbfp4{nfm5j7hk$6gaf$r&N}u`bWC&CykqQR zVLt7>1%-0?pMyU)eSWX$YwQm2s&gdLMSoH23vm!aJ&{$$BcLk<*W7bL1jm*)EDVeC zpK1M7SwXcq)+}4#u{Q%zwAdqPVI!$kdDyfaJk5N4`^5f*FJ{W&V8~uyBNm&VhTn+X zHMGer+f=2l6EhK{`I~dsRIL#uTwg(yVV^Qh5VY`oKE^H@5iIo|_HqQMti%MQR8%c~ zQJ_v>OS6V8_DNKc&|iiB33rZ;S>f?9&vr>&Fko=iNMVoSk6eukN->Uc5`U3g;}IHY z{|zOoeO#90iC&^`{U{wy#dV{kDfyh_KaUXA0~%?7ncei?q|%Vnh|%;5-l1d0!g|@h zg6d(48La5;7D4WRPH9dUvoaZ1?r_Wm(cC<1AHeh@XH^#6B9Zo1Ugexzv#g?$#%i-Y zJ)2tOb}+N-5?RP+Ji@n;?Qesf=rODxIcM#R8bihasZq<{z@XXpU8M#A7qwk!;pSCB zUNYYu{HH79j?w%mwKL}*;gNEQn4D_PbihC!>gMfVfz9YKYB=3iyV1(p|AG0-0>c6{}BiwynZrE z3h5ZA<&%XAu5c^??)Oy`k!fX3&8HOIqx=4|CzDFlU1%I={ z#j&SG5`s;2m1GpW&1XT$^MZ_e{%&-@H-Uh=9exYeWbH2v%v`!sYV$`YXS0!Y3MJjz za<_JsWP*=LX=@=n2GT5he_hilQpjWf<#HeqT3!6rVTvzYX)gEX=jD5+%&jt4np3Bi zoSQ#9-#ou5JA>@z`O8#WX8%oSgo@oOHIGgwg~uXM^N2|i9_qlo_$1YaYRhV?8_boV zvdXHOS>6(I%Ib^nKR=B}F4ro${-;ocF zW3i%tt}gA?r3@MqDB%~f=hkJ*CGet^bO01OEDAun)!Y8F;E%JCvlUIcSJ)a&FOy50 z?t0l%=nRu6Lq1k%|75a$v1ijIuBwI7+XYLr@;9%#NcA>u_mV1^b0*ZXWqK~ zgKu*~rqmYWt_ytg+YXE|_wQuD+72FX=5Ab}(yZ4MgR$=c<^C(p=;-rk2-m`?v~wJF zaavg!yFb;Z{LcotEJ?tr(3i{Fe@H77-Ot?+E~&}=*YV@PfL^bevC*%~F{juCd#{Hh z^pQDc^;stc^w6F|dl!*IpN?&{*GP`&=*P&R#uo(LN7!RDiz3(^fH2p%X#!WbZrc;U z$Jfhi(>|X(De`*$s3awrdd!cYgw;WsZ6Bv7L0Gw7FDY5S)&4WkIu!AjlnI2sny{q= zV-F%=sUwB&2MgW{?}1H>v_@p7OsgjLp=1!0efH1S}Ow+^d|wy-0~jALi(<;eQR zmO}P$E}}2&Tx2l^LWAx30BWtV>v^>OEz|f*YyUNY$X5%DJE+qWSd2y~@?Zila8I=C zp@;RtaAiM6ab{a<#;U#qUg#rl*kDdyo=(VmU(Qx}+jg^iU!Cr?-fpuqTM9>cTW%ZS zZMkl+SN#2_%SpwnE{lyCsTDDG)0w@sn8Em~xMpU+xK3fXEoiV~kV6-2e(mUuU1jho zd4v0jQ62;Q+<0-?p2(SefV7=6fC|Vb`DTEbh$9^xB(+`=XLZdj#AEHt^FZ8TG(qwpI8t5 z4r4PY7){TPvm51jwA?1#?`1mMZTywKm!JWLx@UXZL$n(m@>GAB4qwTFa~Tnh>;3~(s{${}%W62cBnu}xY2U5wBfFuK`AFA*c$DZW+87{0sYP?K?T;aZsTX5vY zFNp@NWNzZB8sd;^3`Yn~htiU%ZR|yq30NPmlKCoox#+$4xF5EMG8Qr;__mMFW0y&r ze8I`zG9G`%FTxm34}gO&>*%3652ERj^I$Ldsfc47kwZpksPW9@X>B_)`frLHI?iZ% zg{Fw<)qj(a?HJ>kQ76hdySB(0PF=M14j4~u^0ys0zPM}y#{~u+XSVGe+O~s>wKf;F z1P9AOj<(LeWEjYi4PVP`gHMn%9n9^%DtAla;NvCVpva-)jphcrt!%y@GevVe_L?tb zkiuj9=;=VA#G04~T^2l?NVuTc{gO5AGhN$fc?tRB^40a3O9SZTf=Q+HWp#V=%DrY8 z_RSMOlx&^bGYE-}GL0u!xOLpA^kwuLFZKsUSnhMMFHwOPL`kuqLW6Ga^HJY48W10T zSdI1y?DJ<98yF(=h$cppUA)ZHVUC|7Flv1|Hu^6$RCzXp-<`I03VfQj&QaTxd(7NV z>=6P~-J{u;Yu|(NMxd>h`7+bKi(E3nmyusM- zG*a>FXDO1YR;P<7iMecLWV_K)^f;ksTZ(=i*}iDhLVX2A&{(xsA4nRt$Y>JPDOeD` zzy7ku1;6IP>!p!!TyS^}$LEWlz=8@8v>MDkI59SY z!+i=kwUk-(hSrLU6g^6{M$2)GR^x)lkxMU8GeA8)s=v|n2;oKJN2P_18 z)KO6@zc#;`GcY`k5M}xMOWYd$SdBLUM-=`2*To-JbHqnoS1!FQHsV`Sx99~<#qPl2 zzOs&-!RVDs#~P~&hpgo9)FIEy8S70d_-xybOegr9;;UBC()cy1@&0PGUXD`Uk-DnoP!RLux&F#+YPL{Erj`+-_(W0ez z1g*DUrDpWWF2khs;?6EH6y|FPEZ+s zf?XI!+WvK6R~M8sf_v+M>O(Wykb&m$hbkE2?>-l%{P+07RAS%2W^0PNk-|StgCT@Z zUZI94He@~}SM>+vcr{`~=7DB7$@>}lT643xUdM?}`s-+ZxX*u;z5qi`P@sS+7x62n z7|m}{C%b%VuK!hq_i;-uD2t6AK%4AA*js-nd?S;tf6b2)^^c_fj$b>L=9g%}|2*nmm%Tkq{BuX+TOBJ= zC|IaaARh||%>ga;rFT+kZ1no`G%8-T5^cQEr~uS$Pe``?9P!ep@`Z^$jd1#umh98I zF*?^IAac8;?NAQX@)axx>N5rEt*P?Og*Wtlea}y*USR!kRKa@nEDh^-ld$G!SnbSY z)DQ>E=NBZvyubnTT4aoa`qLaRALo!m0!%%w4xI5MoVSyy;~k|h>-~IpZ!RHa*qRG3 z65;oK_l6Y?q_vCc?y(00h_mB0RdmwFAQ$M#%vaav{6k?=>7&CX^+KI`dVuRo?G59k z59yGF>%r^~hI-^!Mm`T2(|w*L?+iq3b)q8)-}-HKpcAgK(oEiPUZFw+mXdlerp_3?6QC3Q%pIDKMJoUql~Oq z6fS!SHBkCVr?iX-z%~Mlr@K1jQ}|~Kn<{R1syJ3=Uq*b~SS1JGX(?cjn>v+cgIUP*_&*9$=e09M0`$I>-SE;N5J;3++rK#{$CgGa|e0Bd3e87tDFn`4# zRy(_}C#zsJ29>enbxTRdFYKK(l%xlluL@p$t_YA19_$8klRC$up}s+|dX1oTDjQ(> zlr3gbJfnQPU*+Y`4YE--Q(kLIK)bkt`DBlbT{C>jWsj^*4g?9Vja=)Ho;_gBs*5uj9Y$!wmYr z93P>dW4m|uYv^YRL(NS2KTAJ1^avkwXj;JP1iYF9-NqsTo?kq>N6A231g7;sp#2bb z1_A4e_TKKcJ855fF+94j@QtIUK_AF$+8X;M#v%n{?1!rTw0UxpEIRsw&LiM)$oW=0 zSOeB)O2^peGnTFMW$X=K$G&XnYGCTcZz9e_f8(|kf>#KgT$>lP-r*Dl!JC9yZY~L0 zn|lB`xuI(N1^E8XJk{{0OcQ~B-Wq#g&+vm!f&V*4!f$HAz6SU;@Zw#$J{%Cx3jxao zeftV8L`Z}KJe&pKdw|!z`_uR?$^>M8n!|eb<0FBwpVD(ReAAK> zPViW{#(oiGyYOjR+_6tY2@JI>bh41&5CI2U&ARyd0?Di8!N1|x4^c@^{Q5NEEGNs| zIaGQ)E*kKTptah5|3WqEPC5#WBLEYwy_6~cAM@+y>`#C+g}PmRTg|tF;Q#O!q7J_f zgj&$b!8KESZ@WTQ6*seox);qE5H*Q^7G@s48yW@vg*41eZf4N4u*A#zv^?lNXl;Se zdm@z0z|zs{sE#@Fuu$RDp$~EM{Uw9xzfuhQI7(Qbi<}i)-GJrF)rSReV#vG3GO)eG2zdY;#f`uz^2&(mKD{ryx&; zn~QrmO&lD8X^Oi(3SOVP4Xb}9Wwch3s%$03-=%2|nIZQ9`zOz`i-G;d<}hhwq7cizZJg^43?BRaDKX zDEFS@9aiqGm{U;`YVhI}TU}8Wswl@tV!-IpqrH?K(|DLnbZy;DM^^&y>}Gq<7P;&acfmlDIPOG|4);hI@h^}}l_Lb)otXXJ2Q z2>{gA)X-X0ZH+glp=x%xx-?YbEw5^D;+_0OHKB@n@64)ddCV!T4p%gIbL#3V8XCM# zQfwCyk7ryD1iuvTw z|8A+O>8Ylg@a&r^>dE!pimz?P(@<4YMwW0*)jV&gYBu;Qon7Yz<}+%}@Xl1Q&y}{u zRo6CDcpJhuHI&s?)hVoi7#XWE-kka8*0}KOc<4^=_|mFsdK0Skmep4X)>4Z(7})V( zvv*2rZ8~eYHz!bdF=Ota*QJYPG4G^`x!o#qDnFuxv_Gk~TgC=~q@MF^b1DXS^q`~y zScidIB{JXjOT)%ADMZadhbRz8~#bes}i{=@tQRZfS$p?Np-Nj=TTpy}Gn2 zBo5w!<|MT#aAh2Bs;+9N96o%wDzjtR?Ov~U$Fc`^ENkSyw@6P3cb*8!ddxR2NyVk1 zP{r)JP(vcGbo9u2Q}WMb7{gHV*XA#g4#?D~DVtBm;pfft&Taq_x87wAyqAY7>gV^6 zu{*ug)>YJa>zK*It7|o0=GH45CGpmczN%_SWsJUG;qZd$s+;Od>*o*fbg$Q;!#Ws< zz#FQBE;YXPKD_L{qxnccW_2l(e@=y0c*+0|{N&&N14@5&wPsh|+Hj~Y9P(B*c4A=;^x6>3Zc6_EMNs##E#(-GKQ z?d;M}Ray5sDr%tqigHMw@`0HQSVhVV@s`)u)-{~%tqOq+@SUinw7Pn}*CBH~pPgx? z>QR`hm{(U@Q&A&SPgP)^N;Y7_md13l-`;w&KwCcyc5-Ug8@6GyxM!5! zR8d(vrwT5ix-d-U7ws#uI0B&;D`cFL7?9DEC!H-|-{?;M(fN62dj+Z+tAxg3aHHwj z0GDh$!k4c|m3@i?^gM(7hI@;32i1^3lc8{fx3s2QXuLr&vP9D&IMo!Y3e8sosaO_# zO4vmHd741NHMi8%&aLrispfHn0MNRO|DGqjMOPI~n(CcdUppJJV&)`xpkk_ts*>>~ zN<^kMlT5n|d8rv%GH#rbQW9NV4OiH)%w<}PFpMoEH5FW>0q!YL0d-WF9AUQekz?nH z3Q}9A#%qA*{NY|dvt7?L1e36Y0iF@V!MaE&CqeaACtaWmq>8Koo(mKCyT@NdTa~qQ z^?cLAGr&_Y+*>rS3MMwLvbL(M;$p97ScAtal;=5HF-k>AHMJqH!(;|{2Ap%wISS5h zGMdN%qPe)*iAQN4=op^w)*Y>8Bs7)p)@e1vb0ylwEN@x3z8oxtB+Jg za&@#PKhINLHJcfq12sDeVXlr+T|nk5ls0&)v;-O88LyNwDi`ur9db~7bf5flkafax zy2<(m)U{!de7F1}XOB`|99cgAw)pTbyyGTMnp8AyYEhxQKI*;(CQb0{c;L6*!oZZ& z49ouHExO{0$yd;ed%Rapx@^+qt0#E|pb5jdCr=J~r%aU{uK}JbL@YS6I29l#YJf`j z7FLAli2$A??_rV!8l5zGstXIC32}*(^^_=ObzG>v`mAxnG%JKu2DtO@fkw?|6dQ2K z1GJPS38%DLr0M)5@%#(fD|G&^1(!mqBE$wJOPwhB4sZO~k6an1bVsdeQQL5G>i>Hq;-Arl-ls9JaY{9b3>kW2w*-INOv%Bn6`YfMy}qAO~CDNQ&u z(5;c5IE|#H9odXdb6Zk$Dk=vh;qC4UM9sV;l`2SF@*Ku0VORr9GZM&zG zDJH;-*!%F~E4<^XD@to*R)*`8#FqZ3Q78w7`r7$24tpQ|QB(;gWU$~`ufRN>M{&db z>(H*Q(foSz+wWyZm*1PGb#*oIYbX6UJUkAt*YExg1XGnDdDm*7Wp1`zE#zr?0brl;b?j2p|xdbwP--H zh^i>}1kRo8WpTqYKP7TfMQCnq{VhEt1WL}y8-XO#>rd8)=*XT)I<~x`tbV>;fjgBu z2{(mj&cp~2s%7~*8xT~15hE^6@Pw3lB)YK2iX>%hPc`LTaIsg;I>V`M#mW(KyQW$v zZQ_*4le}0ml#EY>j5IW|YIJ-I7v9-b0LRH@k5&gOSsc6lgyDqCLM#q?NDCD95Q&E2 zRNF&hL)EMr)YBeoOISL3C?`5i57D90Sq(iz!=pt-RJhJR|6*@(Rf9r6O|95fD3nMk zslD1;R$5&qh9n_^iu(H6dOb$xCC8|&l98*ZnN^WU8Ry0znd_=pStL@fP=+rAT@tA> z7$c}ISxAusrX&sG(P`BzPCQp?HQa$oXndT|SnaI((z;3p?kLh#FbG8?=)YVRRWqx^ z7^cZp&lHzBCY8>vzzzo0)P`9uprj3-TTxwoj#mFYsy@MApr!%ht17D!4N*{5UL~(A zjOVKgr9Pcc&y570yEmJtZ)$1%tcp-dElFG@>Jy~+vA0PNoN3EyjrJYFl#DK7rzUM= z;ZQ?WIb&Q~&Aeu`yVW8y%GFLL0GUVd5pGWlij z^YH7e>gw9d&*ta(=J)>_4z`2)xA|@2x1L`szyDjuV>x|)n%@)r9^rRCzoqE+qBk#P*%6XpBo3MD))_BHN zh01E-WDOO}>(ZO5sz@rG<8b%cGtgl505i<+$@Ia#QS5|cL43}1WO3O>@sI8pR z<>ghKU7wDik9gx2UKZic2?ZY80a2)s@m@O~YLEK(5yS6hZ-ghv&Si3K?Hi92&ut zTsuqN>MBYpQ^&GM{?@BuudA=3m3l@6O~~-K#Cyu zd7@p(1M4%75O!f1w)#+&idH(Kr?jDt%_$xYVlMtypp2koi5|=e{O{kof86@%ui$|9lS?4C#2#t%)C zOeAY*L3T80f5>FF0`csK*+qS64KkXIAQ+EWM(Qh*)JJ_yeW}^coKV~=D=ljvD6bBN zsRj-(-?GvQw3RVsD#LiJWgsUkA+y=C(%P~}1k~}Lp^jE6qw@I+hAmOdnIt4ml+Hy! z6A;!=J7tuTRw@f}TMM~kkfLy9u)Ngz8no<|1%s6Y7`q);VdZZB)gpW!PX)k$X&M-* zw-D7l{xF?&!Ak0_%-XLkNR^sys+v49)emCzWx)nEe?59tL%HRJ3M&gyUu8~l$TzC8 z5Y0 zAtlDgxt!r9C@@A%K4KWCg;s6W$t?`dwMfVc77MwikAX2wpK9 zvV$6{#aN`yT^zC7^My&)Zy_7WWieN^ zSK$&0marjH5S%J&FOFu;fiX;D=HPz z0tS>ZzED@yL2QLEXr-veR0v$zs;$HEWm(vrsWB@eWYj0*n@q`++w(H;6dPba_=WQ7 zWVww5u+9`GV_Y4ovdRqM`Wa(5h*>`^=P~14(`_Ssd1y90raW94qAkOgF^0NOB`3nA z^%mHXxfjA1dc!yiRI*aFh%E~YmE@5f?J^5pX2K!U6mf~H0qlXhg?ItNB!$79@zN91|gQ}PS#a0R#?0;#5fPD+^m8F+p{!*t&U849s7uOfq19!yg|Jc_iy}w~AR{D+gSg%}U{JRh9hz53?11((V6Tp}m`iT8MiDE5 zE>$HR-y)TMD!N5Q5YsS`^$bF$HKwlC1_of&gU7Whb9)H1H?)*)rUh)O0wQr*1=1l1 zZQ#bfY>vcMHLXGYabU&?*!wZmSP(T|18qAS+5-}USyu&JGfV?QoA3g&o{CT@8y{4r z%Tvf40T~GKUIC#c3vnNGFdrnaO*c^GJTm0@ucZqIdAA3;X$puiQL}W;s)1d~ir>|Y zy;S5Xg}QK6$%`L$n!2GOLaZLFCvgyURmdFAZ&s^G(=*$(OlWo_=5jX|Q?7`(#Q87((yM5| z4Re$qa!V^@&=xQxtg7;Y;WB11 z!LZdU;}%OMyGuA&#dP23>I||h@ddM)K3md|>9I{@dPOPT9Yh$k0WQa+K^wK$26h7^ zkATA%9f;VP!aWi8{FfUHSRl6TW^Ityy||Ju-sS@4wyZ9Kb!6DI)>T=L2G*&9b!5s( zXPNFgUK27s5jr%WAP&~nHU{HPXn(so3mHFx9S7^2;d3sEdC{-g)1?Cv(qha`EGIE1 zXMt({B^XPxjHIKLMmfc*10Ae6Ts|;Is}*iylbK+GfjI8bqv*z#O&cxgSWJHi!`K3k z?5yPegFEOp(gDS?QqEzNbqL$igs4qjgL8uANhc1*%FSg2=TtLkH#OBEX33B)XQ7ih z0c}8|&SBuHFj$B8w@?iX-;|2CL7Xo4#vW0(ECS5Wf(@u^z!_pFm8JN^a^P=7R+?vI zO^j&}VuwsD!vqWt1ZI)Ie0C+X0RGBNP?se3#4!-MB(A?yhLbFi2%QFs9l_01;?k&D z{8^<#a8@~pW((TRHKpYUETZmS&hH(nqB+BhebB@g8=Uipr z=(xr`?y#0dEd^nXVl`q;%T8K0m`&PgTPzVWoD$k>v68VLkxc_ClSGqs3~QClGR;#! zi@0{JvXyVbt76$Zr@`Q6(p7f*D(08WNUi$=x59w*EQ>OwG&pBf#WI0EOO3@4m_1c7 z%3FlR5*sznWMGK;1GJ*;-q7qIX`ZEuiZffNs{g@x-jal}B zEE)?F(4(tZnOb1R2TTRc&RuwY(vCy5QMy@GIKm)J$V7#Z@)NqNX}~I5n^u`2R7H4L zZx=_f&MIqH0=t~f5Du3@_CC0=H6O*bk(1i6dS}!wv%qrUR-c4c1fF6zi790bY6CO_ zuic8_*Dk}#2v{}{nl!>B*U~V>w2<7zY!jr4&PPg~exV4{L}`+jOf2N>Jb@MtF6OU;~1^Vt0QG>y;RfJ81LDX;|we73j8^= zo>XmnAk}OIn1sr&=HU+kbxdH7tN^WniTI1qYNkxwh-o;1&0?xqpj4aPRVSI_S!fdp zVArzKWsk6+ZO8$#$BNq}u(cc!lf-R{)vIp6?N)dp#&KRdVjs`y@bW2B`gAv6JObP9SQRszLILn43U~V8(XZxF=4#RUg zY@;7c~m71Lsvp;q=X0bT1!3@?}$V--lJiYT~MauYN9GzvO`z%brtY((& zw-DM?d6unHXVKWy0pJ}*LycF%P|v<+#H+CmNDw7ptfIfw*gCm}X6Mh;@jSMQ$ttAR z)li50vGC_AD;fb~HmDDIHFXRuHFY6e6OR>53-1AJvCIc({QXRNSj& zkHUtUT5d`|;l;Z42teT=fQ2wZTGQ- zq}8&OGc*UcOz4cXmghc}oD~4~jT%^Dt+fUd zL!5{^u%g>~pq43>RagT{^h$#>+1dtjR#$3s6;_lMMDZ)Y?Pk|u01ZT3qtwx9J@&9_ z2&j@e#uoc`0Cr$~7&7B0|8*=5nNl;WawoYpW^C{Cz$6QZFtp*YE?6HYn8SJVh;#SaKydH;GK-(7uWSBSL-6N=|4HePS2G`Aav}l>2 zJ=n`I%&x#MH8D*TX+y~v3D*383TZPslzy^<~&FU0tNL(CD`N#I==U~A53 zXzpBUjiD8v3*2TA#E!|Q?JoeECq!)kv5=cEV3;JrjD&#em|IxLfNY_ivf&LdN)k|d z+eeN@n7z3qJR`MS+D@Sk;vws9NK6kCLdvL7ENYWgt3Wnwtq6EX*RMFRzR8Y&dt469 z@`1Im(LK|L3A;E(AGbVWgLcv;XoL(hcFyIV-CJC{i@HW&JIvKWj3)}DF?T?5ZOLJF z!lp~oX^PmBM4~KM+-cX5iQ_iiWsyodOUpXdwj{Dla?+Zeg$otL)Yj$4y(Py#vEcbX z?t{9b%91P@qD;=r3r5{I9Zk}(97oxWk0z}TS}m|UXE#XlXy1>zknt&+oIBTQwt@UH za@+QirGz~3sWtNCItH1OT3g`zX=fV&ESO7R1!2KvU7otkJ`degplmuMsXe7 zB1&MBbCz=4jep~1*ScP44;Agoxp*p@sGFLgP5B5}ospQGY>Eu*pOhNST7kXI0Nj&U zTHETK#&%8~+Uyp2L0tA@6Y|=H1tdGt3+-iyg+voyJx?R5G^aq#K zxNRMgPyaIB1#w#G&vq-Df*WVshCc|oe7Nn9ST$oLMGlqOpFK-tKbICZe@o6o^m(>( z&B7VQp{;!Ue@$y((ah$*{n7OdX2^gGY#*C^^13cnX-h$; zjQvp8H+lQ025FTWGMMz30{~>iY>w`Pzp`}~pw`WK`PpN_86IEy z5|(0db8cR|+D&%>iwQ!vO8~7N*q5-t?q&;ICJI!c?J5G7+J=9Q(N#_7BNw*wV4;a^ zyN=LKMv`tXo&&4zYFwyEV~h&%Y9@kK{nfM)-rRf`V-`w6te^<(i8LE|=7xdE&1Vq0 z`!OlDv4MZV?ONQwnhuD>OXxHKFo+r(^$5A9#va_nYs`hR zjHbz0KoZ#cmC$wWxErDfF<(NLJ2t>Lj@UE?pusj;;%;A)x1miXxg>e5t)mI;p>LdR zLJCu7Gju|3z{-~TwKZ)#VsR#HR-+O3xDk*#!c-;B^o+ojnk_V5$+Z}Ln9zT2&w6Cshh}!m7;gz&t{A*Iv=?g#?L89U znv_9{<%P3Jh8%mf#8w;bO&}IIHU|I|Ax0)>)yS*aPR2gAMJ$W!RHDuUM_y@|fDRIzNzbrp!u!cPLCH9p2Q(T%no!S*`QN zyW3f1-_^FZ5Mb;UIxo+v#4?`rXYtS`bHF@dT>k(8a$m-FGiffidQGyoVxjHlLbnAO z$BFXCoQcq07Kg5&c zZKNjV0tQfCrL(N??h}dYolB^_K+Cfd@{6RD7*x z@2pV~EQGC&Kn(%Y&xGyk(rUJO&eIhWke-m&1tMTh$fF^-1tD6@8gYI$iv~Q)0OZmB zX&V6xv;+$Zl-MgLOf9Gm!a56V(QcCsC$U4j7N2FE+x{`R$=zd4K=(}8o~MP*A(+ir z2F)Sxc!x^Iek|^`O6;E^a7??f!sX9)M;VafjP|^oXQg(dD$6mOBN4N$T0#at6yZjB zOP|dF7r}?1*S#WT2FYX>_%Cc>nD$@^IFCgA(4E=rVmV{~+|J#{1|HVrb@nnJOt>{F zgCb>RtfuamYuKzK5pfd+;O>hkt?W!CPaoW6SPl`pHp0Ti;GR+2KO3=RNer2=*4}!8meZJd zt%SW>kznR&0~`;6N-ePE9Frp3zW}bH+0w)<@}gcH6WK()c`8CKsduHWr&b!w;2Nkk z@|djRel#>wKAuXT*1Qa$a*Vc5L1?QCNR=kpAZDTm?7>EojbWQ=Gb3|TO=z!~f`kQJ zMZZhdxrbs&Udgi=SCU;_JYzEIw!xB7)&^8|k`IRw`Iy;n+CQlvNa?$)j?i>Ca{epE1ICvsk#?F(iFM0v_bEkSolyp%(GXN1s~n-R~pw<>H@X)9+X8JOnJQmGFs0wUIM(1xj74LL0)eeq^)_PYpK~)q||)ZN3{h}3vfmC zIDeB;m3TtFBfww{1+3h__1*el8OQzt4QI)FY!$@qJy49&J%-?2T5d=E*1HD^gm!52 zLqgMJu8P1iWAiNnd^Gnqw?kmJwk=`4F#)AEfMMFUjR{PO<0G)m5#Tay3kWRV_TGUz zHXZ&`-uei;YxOp*Cv{ArLpOed)EHz-ooZ%9)IQR zMQumq>plMTTl`ydpL>SAvGmYO#=aQ*Y~L#ijy&hkV@_EA(vPhVtbF@-7u@>x10Rom zpzzBxo;>BK-P*SK^XEH!KJ)siyWM-sg}=UX&;_+`{r&90ca6=+ym{%J+pc*m5*^>` zjCngQx^LZyk6kok$a^bNe}C${{wGI%_nR*gXFV4CpR0E{X4C(?(|Guf&kVi2&)Vyk z>=$||@%i;nyfW$YKRgk-e%<>+r;c7Q;jzyi`1_(uSKaW$_Q7R$*RQ^*|Bz(HK{F!< ze|*Tib+^^sIX^M!wIB2Uvi6RaGas0~!@Rc^en0!JcPsxh?WE(DW{+HPNbRZ-%YVK1 zk4vB3KeJ_B;Iqe``R&ZdpS*nev0rAjuNr!LzpEx(ar@sR7iPAfRQ`OQXkDOR)d2?# z+<53K$6wU%!TtApZoe}}@4d(HPY-;3%)AN9f|`R`AanJe|8n6wpM;BU*|}lWec#^v{bL7BkG=oJoO4z!E8Xwke>-mf=eK>b zb?;{$TJZ8-pR~XD`gw2td(O*s|M~6I^S*v0vTN+lsttW^Tl(xD|9W0|zk3FJ|5)#( zzusYw34?b!JnNi2=AYMl->>W69(L7`XYzh?*YhJ+KK9(s{T}He~i=wqtfc;wqkZ-He&W+wqbT*HevQ)wqSN(Hel^d>s3aBW>A zdJZp~Bxl#pX_%WkV&q|?4nN|^(MKI*KkK)}r&pKHgz+=@SO4xGuG)|E4(M0NR-pYG z{iBCg4Cr^VKZG8gga5S!R4_51-?)x{b$@h@&JXA}Jy?Fosll@8F3lm6gZ5oV@vh=i z{DJN0oDqi&=r_RsN|p4l1E+s4m?V7 zV*2QfbU83ri~wW3R}5&;A!Je^2SZEe>Ii<7mF+c*-EjIBK_}}{eRJ#E}H%^ z>DK=w+D|rP%5F#->zXeq6K!=D_x~n^J>m-sXR8N>oCz z=EIzyHl^BNBV1?Pv?+CPmgnWAHl-?HORrR_9eNq5RDb&+!|nJtbg-l!-(3KUviQCN z7=?ZLMVwZcYwXYW;=_^wDSkkh>vl?|*1|lv0T%6?N*x@aeDE~b48yPmHo{i81h&ED zCf|kYVbQMqJ5|^S`|~qltuP0+!BMas7D8_j`Gh4f0i$psY=p~VJVLMz2 zbAHA3Fbezch#oi$X7e2vC9oOJha2EZSh6?wfvqrSC-m==N{xYe@HE&66L14;hDH1G zZ%APi+yL9*uz}on2<3!PILG2cQ>mw68_eDrJ^Q6nXTse5sdtMHqn=Gpv9u zaE{4`V+Sz%P|Cw^xaPt!uml#twp`LfZv=J(v*A+XNd7G?Y=qu!#1EsLjHA#CTj5fe zdpPw0i}-PjfxDv@4uh?*5ax^~9rTVv&mLU=Yktwo$oFw9hedp^#yaTn>vP$I(Z}z< zR>Kl_E^L}gK49ZC{$1&w=!K(U+jQy)X3xMrVKZ!n8(=%kJDL0Kg?=~?mcU`K5stC= zDU=sRPs5+V>@#SeUy&Y;f>Brq+hLQ%&!iq<6Z{G`!@fDx^I6mjY%C$)u&ETgH&*D|w7v{~PT>GGh@8_sCM)>!;FgMC~dBElv`u8Os$8KRXNxi|m zIoPSiVc#L-zXAUNTVNw>g-c-LZ>V3`d@g=wDDv~@pRoD-RO)URZ6u$t=>qC?Kdy%} zU>i)p)(iQO4%iOcV9vZ$YQ3GGkG}nhUxfX_4GXXX*mf~?5AFBe4jzWyOUMVzz7#t) zE~Y;mfZisqgL(X1-6B{5n@tYaz{cNGt^>&r91PoFF5GZ6{RB2&LwcCElzf>S_UA{; zqSw-nF!wsz+2U{pY=+e^?|SYBH^3IyzKnha8*d=rF#8YK%fZ|a=ECTWv>VKB=6YBJ z&xIRcGi%EZ!*o zmOsBK)wB%uQm<~6jm_fnT>i$8r>6Her7Yi;w?!HGfk6v0^8-2adKU!pG7|j)IpYF@@|6Ww z*HNxn&o%$BYYGF|8P5g!j^S`2@)hegrJgsr(>2+2ofyc;NcIa1DsVcE&zjNcxF9fS zoD*Bwp5^+24>qN?hj#sCR!@sFDchpnRK|jBDBHX~8K?9M3@hkVF$Gx}O9I2l@%VIA zae0`(LDW%i<|kiR8=-Hp>04xFTVVR;QSXhtGB@@LEbKLzx+)4R?KL*g%-?eUT6#^l zvpZ0Krkh&vn_+TRW+DUG)K0STS>CzaVj=fi!hC11pKY6bzinveyJ;GlzDqlg&&r5! zqHwDdg;^PY?zS=WY0L`l-!~JxW?psMe{=t6##`Mgo0OF~-)v^;R`;ir*fxJr?z8fh zO{x2~BSO7io-y6*xr+_Da!v@e_sZ;(+3lSy+wNoi=4o^e`)pIHTr%r7Ymm)HX65pz zef68o_i_D3^_iD3zT3MLW_hN6NN-H_i%qFBq`v@;Mz#dm4<Ka)@J7)mp8a}LYO>{dLPyyr1aczjo?5VKwcp+) zq+L(ipZfUu?A(tEtRGFVo|0ufg?`!5Qwp*&16_O16sxn*{H;Le(v6!^CDzv|`{E2- zu=?gi(|Npk!e_gvoRBqx0WOK;NfU zt$q^yqJkv0j#@|h>nLB(_8@yN$@qX)-`af?W@YxZ z{x+c-dqAz_HFsOj8@vtQS;w(`tUU^l6(ZY4zN2${sEwnUXLW7ju~}wIjiztgRO%R0 z=Gp^KyeQMP$0@6*uGP5s7Xy9m-glEWm$bIjvX9AHksaJc_8PKb$XG(TkEOG9wXVp)MIMx<8BF5|cTo(c?_xQdor9q2nLi#qfN>albf)7E=I<|1sx z^4*A@{{2#^d8UVt$(A5nh^){_{JGR}WKSbw+2ZPAB6VTy(TaR^T0Y+T$rN*u?%Z0= zwRLmO>h?R%y_P;l-I_j=XZNFiy2ve0!;r5-{yxX{8O+}pWVRRZXA?x2%bXDCJ0*}^ zZ5gm@&g6Uvdjy@!VfzxxkR55)aNjx-kK%A4@~4s8T*hp1afa&$ZoW}Y!{Fwa$BoaL znm#0%<+qjV)^?+B4f5Ut{_py-G0MSQ*EN5`kQe+P^;!FraNU_)cQnTy?K3YU;o8T_ zd@ko2IXA=3bt!YOqs)`HD02=;S8&~Ou3Kc+VNV%F^ufZcnS>LvCI|YO?lq(t82G=H ze;C(g_s5@bU9IVMJ^|}pkU1rgbH3j_XoZRBwtI{rZIra#<-f8c|C6@Jztu^C>y~oe zXuF52lbEX$JJ-ayl|7uhn{(~moU?pC%emg$|9APey{tmg{$KJvkb4}AKRX%!H16<&bh_;6<8Qj?8rxNu+1^HUHKMCPYo^X~ zGp%uQGlz5?x5sChZyU|N;*uS=9E+zQYeHsgJo{KW+n-#&lg2Q~Y_IaWF0zHldJo(( zo$X;}cagOq8{9?qG_qlxWY&+?ARC1&hhx8wo$mUW<>@QVjqa4*e7Q|93Xs{n%};+4 z?qpKdIIgm5h7ru@bdAZz5R`P06(I|El8qr<1+qEFQa`^ot)|VG_jK5$TW8ySY)^Ld zE~ykQ-F-~<5W%QUvJzygk>w(L)lxAgZ`Ga?Sd^FemVsCEhZMIe88&Wn&hDpPP}-J(#I-rsEy~yG2LQeA_tJ_KMNv z<~OLbay21ak8EGl&&Oo9AnVJXceU)w+V>%36@yZ#{VfsW=n1seWb^q%ZO?fQ=NRHU zJ_mEO9=Yw2e{a%BHWp?4p3CxWjmDfOTmNth3%f4*w4+vnE`ZE+t{p( znyrMcb^c~Hyc*q2?D5}fx|y|7J}a49d)pYXp7S|-q*A4Jp0TadnqrEZ<}&qTzUP@A zAH+hYg0wqWoo`+zx%r5j(_6W0H>LCb#_?Ghmv1QgW2!n*glrubCKmD zJKY3s9L!*y<>%M(u#EFj&d>bWelxpEw_$1anxC(ZdZPwxjkF$pjXb+}`F~#{O$a=c zGbQj)-jqQ5xQvp(N8?TmY#28c<|D`q_U?AOz&0hUkIcXbzvCH2KjnL?y$828?^uh) zyIqU1LtysOjINdYrcys<5~0oh7hN@h>Pdm<`GM;EKuPBD>@{_>%9}to-MVcfx=Z#? zrH)fRyR+}iy}J7Ue79~J&2y59VX4#|=UjQ&%R?|8%mHJTY+MmsL({`ELSbcAuU$<9f_8vxG$>FKg5ti9$ zfovOL#%CSx#wE-9BF;B*KD~!|x%t+f^NyG8rggD(n$=r_u7V>{sl#-yQ@KkH#~YA` zkuNqmV+1~;igE5KOluz7D19xT19#*W4$w{%7pK>L-D|kB-@LPhcUkfn!oB zd+cT(TVpRnmV+!}g3W!Ov0`!W@wWHh*^lJ0@a@L<%&yjFY>XxMD6-x zQ>o{B>Qjs>3;JmPH!pK)_b#j;Yc#r6qANR(F-3iSD_fbsj=b%A+aT3382HaZzT?_; zT)VNuPmrMdzBVDy)+_V;?rmh8`BE#ZJvUu4ma&Rs`{eO=CbD*9OHI)Id~EBz#(ef( zw6SP9n$a<498*WDuO4({o=)bv4#emATE=kMI&}2qS?xNG&5pM6^AiHg8SPs3wx9U?IEtesi!t`b~wql>mMU0UHx@OKMJEKr;v9AepZj#z9l0w)qS12d9med zCHnFvrBdH?qi=Kna9#W|?5Nv((KWo@IJNJl@QjdS=8}0V#N1rc`hE`Q&OG72%yVn6 zOs{)`b^HBhvr+V&J5_rZ-L-|eHWtlWGy@wBmY2J^wvB6l-A#Gjv%t;%fI??vzS@2L zx%RO7+lao_llTo1>Fa(jiuq?`PP6*MA$0CYZeD4=yI@bMZAL1!569jKfo$^$R@O6- zmmt5vqy5|-FN-C!0gv}0 z)|2K%-Me!=Z(ff~2sCA6{?__-7aMT?FAp{L-bLbcp8Nl-o&p|?W_;y$#m?2=czjkK)*`$GFQ^9?`rU_Qg1N>(7?k-4_$c9oO}~!_YAw z9ZS#Be2NX^dA6`(L3$GVnH>`|(pB)+LfVz2U2XUKZ|Bl&d3Av`c`RM>CI&vr8z0z^ zH#N|fm+_Atj3*b>gZ8G}#hssxOtgK_iMD%>i_EyB%d-)?#@>}_x!pT|Y zHn(nA)Z*s6kGRiQrKwb$W34r(QOUNI>((fJab7dZQmHSMkDrl{$}OTbJv(vppBI zr_26xmVzug&MMmu^4dv%H|bgWyU!@XuaG^2%*|Dt4)^Q^C(IW5ph>F&*%NqfGnonC zAiTD{KC)`H-TPoRW!ky!J}ZlR)-rBDpTf&CFYCQ{n?-#J=WUx=+N&S$&)5Rf?tLcd zqcy42aE|R`vM91e$XKSi<k_$d)48(dvGp*+5~(yBj>uO~1QwpFdD^Oyt};*7Ef< z*Ut%4$ELB%IFrF(E{k(xu%-Ws^xu)bxx4g4p|O2fnPjzpHG_fW<&-d%gIBh92h zYp;xJeMJ+pEX^>|^ggHOds(@rkfxC|^G%OE8)bO5XQOtmnsZ-qZiRo2EZpW!+PV3h zTgp3gZmjS0Ox4acb8ay2(dk^Y^Yhk~oNMNsTjP>8hrc#ttC4M4C#wOhB2E)e7fZz|u||xEbHxk9 zi^av_@5N=}E#h6`ed5F7i>jZ;72mYZ&*xtif3)3?->&!z;;Z7D;=AGp;-})5;(lv= zJy*Gx_C4>upZxguI`6&Z$NPx=#ew2(;;+R0#Npx*;uvw9I7yr)&J-)(_wQG#c$HWy zCd9eoJn<6oO7U9pCh-pOu7CRa|3~o$#mB`};%f0VaYxn5TZ;cv{Fk_1{QM(d{}+mX zCvFmXnZ@;ke&UYeZsKph^3R9f^_e620b;KBn=kzHqZR+PI6*u?oFSeemWi{(h&Wq3 zPh22gCSENr6K@umi}#8v#7D)a#23Vu#aDV~xO#X)@wMVQ@!#SX;iPOZH;@M(_SR=;7IpTTZd~uO@mAF*AQM^^WTfAR1XahiCVc(zz6 z)`~H)UL36cf1ct`{>#trg^FJ+E)uU0uMwAte-!T!Tf_&&mEu$4^WxvcSH!o(cJW{0 zdhrYKJ2540BmdoB+)><3{FOLV94;O%juFR-lf)wN6!9#vT%47b|KQhKO!0d0TydUw ziFk#$RJ>8VRlGyIPkc~(Onh2=PJCH>L;Q!hPW)I5Dxd#R{7dl%@$hf`a- zfZ~4aX0bW@BRADQGBR)kT^mdEgmZt zh?B%=;%Va9Vx?FsCd6~a`QjyFlX$gwqj;Nmk9fcMu=u$6w76P)S$thwE50XwEPf__ zBW@HkG=JDm42T28-NavsL&bx{5#kZz7_mT{ES@BuDi(_sVvQITlj3>eJn<6oGTGOa zieD!-i?@sSiVup9i_eH{;u`Uv;>Y3_;(ixV(}{RIAxzzT6{%( zOKcZE6h9Nc5jTpS#>u|o0C8t=H*p{FKyjpaw3sIriU-L*TqwUhRr2ZL>0+@M6vJX% zoFiT!Ui_)w{tFbpRJ>BWR%{mU5L?8D#3#h(#h1i4#COE^#ea(%#P7tE*hlNC0piZ$ z?&99!Ffms=LOfP15Kj&5fM1>$0HiMUL>NxVb6S6m@JDz=Kxh%bq6 zi0_L35kBt{#8tzEJ#IaiiEv z^Vz=Q0C6XAkhqt)pLno1QhZ1E8Ljwn;&^eAI8~e>o+)nByz2MzCl!*1#ke>^{q}yX zOY0>+Pn;(%5|@a}#9PIC#1-PhVypO!_>%a#_>TC2_^J4%_=EV9>cjicum8Scwz!M9 zr#MtRSUgNTM$8ur#i`;c;#p#aI7>W7tQQ-_h2mx6H=55bQT#fwS^Q~$zdl~B_&wqS z;-lhI;`8Dw;+x`o;)mj=;#cAiVut+wcH)lWZsOkJFfms=O3W80ic`gt#nZ)7v099X zv&Hkpi^Rp^67f3m58`d&mF~rO&-;_&4~UP5t>P-NuFbcT7Zh(3-w@vs-xEI)H;7-0 zKZ(6Q_VsNm2E<*&!QxQy5b+4HO7o=S6dxxRic`gt#k0iFBDG@f2DphP4Ssxi5L`X#klwz@j~%;;^pF1 z;`QQ9;+}mZ_>%Z{ajp2C_@VfT___GKxJlgR6Tf~R(Ky&&@twpy#2j&m zc#wFQc(j-=P83fNr-`SEXNwhLNIXZJBc3l_BrX@pkb~;{D>o;^X39#nob)_?q~w_9fm@{9W;1;(x>+)i1wP ze3x(hdi_ChPxF(#wLZUHey6YG1H@Ib=Yfjvk-kpcU(6Mc6ps}P(sIo+CMtfSc(Qo9 zSS)_p9TneI+(W!l z=l45PE3k(#ovna#l_+h@j9_tyiL4Y zTp_+Fzxc4?kBO_q)#A(I8u1_E`{Kvq=i)cwc-iw0iud~5FXwjR_ToTs4>3m^CLSst zA&wFA#fjoc;!N>u@q5h=%N74glAMmFL>40bGzbqi~A}43dK|M%a1Dlg!qj3lK8r~R(wzVSll3fCvFro z^qhD*F(AIF{k@$O-%Z?0e0*Eq4-8fOU~!aqv^Z9rC{7hm5ziFM#aZGx;#~2!;(T$U z>hDs;mx$Mj&EoCiz2XY-QL$BgR(w%>U0f@^Cw?rpr=LqH{qaer~Rc({0+I8K}_eyn_)r1(s+SgaK5#H6^V_M6UCe7?9)yiB}Wyg|HKyi>eK zd_eq*__VlMd_{ai{D=6S_;2w`@s0HUjpCm6m$nlhUG4Xu?G@iy++EyT+)q4IJVHEH zJYJk4o+O?o7K>G4Sd5AF;`!o5;-%tQulV`AQt@lVW#UcZo#K7sBjOX{Gh!c=d$r=P ziEG98#1F;w;%L?5=Zb$T{v>WAzt&&eN!(4`OWaR9NIXnDT0C2RK2PyNajG~}`-&$k zK2tnf42oefA)YJF6E7975U&w$6mJoii}#2Ri1YLu{!zuh);gk9@m1pA#8<_|x^9i) z?}#6WKdC?dTk#FzcVbHHqjkyvaVPO+>EA=~A>x7J2=Qn!U;Ik#J5lkI#8bty#Y(Y8 z{HMx2QR}6s-|#Q9=O6+Vd#I^Tk4Os(6Zcwipy=sD8tW z$HY0}Z^eb;W#aF}8^oK%+r@jt`^AUF$HZ0Q3*sx{8gWOp*E@=TAbu(i*ZAA+Q`}cPKpZX}E*>rZS}YK!h%>~q#7eP7jEQr_3&jsLe*8}HE5&QY zo5bZ}i};ZExcH3tqWG%#w)ju+-{R-u_hL%i_ItnHwikC5_Y(ILhl@vuW5n^|3F67( z8DhCOON@#2;zIS?a}}R2ULrP$SBp1_w~6;$d&vEai#XPk5PQA z_=NgHq2htJ{PKUSeX0{BKUq9OEEi{qF|k2x6c>t@i`R&M5N{Rl7Vj4y6`vHJ72Cw| z+V6Tp@pr@z#fLSY_>baWi!Z2tepEa|{$e{ZTO1_*O59%@E*>c!Cr%KH#8bty#Y(YO zOp51<^TbQUE5zT6&#L`T(z@+$iucj;v}H=Slj46=yiV=DT=74NIZC%e@khlc#An3S z;w$1B@m=v>;*qlN|0sT}^nb1R4`Q#4zJ2w6+vm254-j_}cNh2C;@*dqQ}d`x^=d_jCg zd`o;^TrYkhekZ2HK0o>O)nCjOcNO;%_Z1HmM~Fv>Pp|Ryj8%MsI8{7FJVPuOXNgg< zL2MKkicR7*;tk@>;+lOR_>}mZ__DZ0d`Da-ek^VfzY%{Fd&$m%ulnWgqxkmX z&f;KkAMrqOxOjwki1y`TC2_;2xZ@f-0+vH4}cJiSsrw-pD7JBhoC zIpTieLE;GU2=N$ktT<6TQJgNGCY~);ieWJ+{zjZ9E)*AwSBXo-8^oK%Jo&xlir*uy z5FZhr6rUCUCcZAN72gv-5#J~zBpI=2Nx-Rsra<~<`s%xEiMytGW>G=QSsZwd&CvuBVwz#O8lGnnpmUf zEN>~^E`BU-5Wf{SiQDSEi|xgo#XZG+#e>9=;!$G0c)WOmI72*Ld_wyUWr~NyS}`up z75QQr_wP$C7N63--Q|j3Bi)SNuTyMEqR*M%*Z7s{OVT zv&BK;USf{+6NW1Oj_f5S|9PRPlQ8DdppQ z#rghNSKkZ8#o|@sQt=Ps&ElP6i+G6c_kiM$h);^oiZ6+O7vC1&7ym7OCVnmcAokL8 zu0CRxxV^ZuI9S|A946+9M~KIXW5vnhH1RaCSbRzSr&{rd_;<pN=pQrdd@sjj; zajAHdc$;{)xI%nXd_r6$J}*K{y0`5f8R&@BU$1O;;!PJ z;=bZRVy<|&I7TcGLt39sQoKk!O*~tS%a2wl9ujv^KRieA+2VO(wemk-@k_-k#cRbI z#aqNX#e2m2#Ye?f@j09FU3C*zYxC{d+EJ_?Zj+xXEF7R-yVA@zK@=V z4ORRQag=zBI8K}-P8ClU&k&cY9u#++U1}bHv|@3&cg@mEyJH zjpEJXonnjlkoXtzDe(pI74c2+pW=t&dhtu~N73t}d4#yVxQn=#xSu#&JYRM+O7Ssb zfjC*5F3uFs7AwRW@f@*UJWpKxwqM`;wxRRGmx`BboVZf)YsEi^w}^L$_lWn4kBE

hbXQT!$GHStaHUGW2Pjq>+z#XlF@rSCh%Q{uLI{+K21B<>;ZEgm2a7e|Vt#bd>B z;zaR8afUckEEOxouy~F*TWnVU`;Fokir=a{7c0IzGV~Ali68fQt;N^G*Lb^6)9HTx`ATT_vG0ww z4_|%lK1+3eu;S_S{4}Badi9n}|AcPq+3$PXho9ARpO17t{hjs;mC(LF)IRpTg7!&& zucaUJJYD9sF7xx}hn|G)L|SN?Q9Hz@v)zA*HA#RsGnO8@^;Xud98BU@_BZTI7O zVv$%PM#V<4No*Ed#8$CQY!^3(-akF}$rf|OTrp295=+FW*eEuM&0>q#Dz=I3;s()s zPxlvd#9T2?ED}q^sMshriOph**ebS(?cxT}dtdh#bHrRRPb?Bk#HiRPHi^w*i`Xi* ziS6PB(Oakci#cMhm?svAC1O-;6r03mu|;eZ+r)NpgXn#r`-?eZu9znli6vrGY!sWs zX3^LB|6bU)Im6wI{;VC4|L)$sNM=6G{9A6)bE^>ZA!$EXaZ)?sF-uD zA9snm2^xRzpD$ASk|sZ%Bj$-|EfdC#J343B$z{p9L^5Z@h~cA#=N>X5>7pafA31V( z?x+JK?&fBlM5eE|_j#(5$Q_!$?8TWyl-E8vF7!Nehux*;YsE>whnI7cU%w=BpJ6?u zx9_6O;2V2O^!+z}YR@}d@}@5GLdnzLmy=F^HV1a!cC~A|er7rOE?#;(OQ*kr1G{hf z`*+gv8(jLGz4Z8)mapWXyYfDb-1Ox3_3v1&3tp1ES#tNg%E;DA-jd~~KSSxilsvn? zFaJSuqs!+2Uw*&j{fL^pP4Ws=_db&6W&7zTEB!Glke&^YhLT+`6uo|-d(x=D*b7{>waT_OJ0&Z?T6FywFpGuw{7miZ;ZzXS$|G!oBMkZamq{kKaTT@)Ko#ZVVZ}b@3+e`BF zc=C$$ADGsoaZ2Xv9U*!1HU147bl*bcW+w|}C+TVJsgjpSo+JI`(vu$N;*v+w`ZfN2 zDgEb3Ph%H5yu!(M_nKwTHh$RWW+&g#%hUS{`M%h@Pw7j#q<|yOS$XCk$8mqFg`yXq}tXL;7l^&x!fzXDa<%$s1MwGbF!U@@)CZS0%qCE#J@A zllE^9BDeY(*rk3RSNaWI>S49yIfwXqrbz#LY59@9JnF;y%*mCg6Ee2->n%s$OPIEq z9h|&VLLH7oo=ra6l+SdEqk2d`Mfx{rT&`Ar&Op8cex|SHjcI#0N9o({@Dtvq8#MKx z|E3<~_eoE->~@j#e8$8*UB-0YjZgKU=S}Hpyxq@Fqb~YH@?6E@zC`n%{gpm0dEWWHo^vH%AbI1RzWhDOmpi#4o$$EQ=Zx{wr`J)dCHH3ea<}Qi zb?+kIr_=T6!ykIkKY#^{)!T+ceLd;^I8^ek^UslzM@RbUkJJsuJ9+wUn_1q2yuJtd zwQ2pDINwLyK7WwB=tlp(=lNpqPm;H*z0!VfrIRaBC%mZi*_tQcu5%yskbZ9rrn`3E z#`O!vkz4%yq<@oUrylyt{z_jYKbGF-J0>mP=x1bmU!6Ba@|@YeAiZ2Xy9fQ}D1G~G ze)^qMu6f9J$k^RWujkWM(bR*U+oh-Z9$(L4y5I%L+vfOk_nUj1TO)ZpXeSK6+w?Lp52$nCz_UGDpo^yD4n>;JR#zbkq3#lC!*q02mBcQ&rO ztG7d(oc#f%FO;5-dYC6nQ2N#`{pDnnXYAmm_raycdt-<0?|ViM`8lTt`DMCqf4Q%Jun+G7|ws1l{)u{?OZ+IvY6M*;T3s{X4q!?2ncE`cIJlqkGV^5A!9n=Unak?WgoJq^IOhzMix{ncah) z-zk0TnST0Q>A6+%w%dGpdVG9b@?6QAmHu_fo4VNl7m|D0cS`%uO-`SN z4*w)Q?fd%oO|M6u=t0j~rEgPy=$`KLo#eS)=5?7p_}e{^+c@5J9dSSp>Bl;Gw%5{S z963|+BKh0*m7j#<*`gr|CtzutrVBk7OczW(%l`}=hIGGD$} z=?63MvwAD}$rpUVJitDONS>$q#2vZMQIfaGzs-|;hU6_>`eTjcMP2f9uH=mxe`}@Z zawk`$6aJ|5*gx@(oJQvci3CL7vSzrRzA-qV(C9_rYIrDS*y%|bzl;qJ_zW$3OpVEV#a^$xD^17_Q zBGOZ$dPw`dCdqRz_4N<(;r&T+Z+BlXR`-2W@(l&P{B+4*b#g^I;lm!}KlUKsnFo&M zw>M~iBfVcbO!Azw{ri3>zmYF_yXHj)>E1J(yi-PW7*_gh?Sp+Q`6ZHAOCE+=SfPtH0VSy^ps83qY#}PxG|&{CuS3dFrQW z|C1+qk^DxE?tQZ4jX(N==Or(eJgN#2yY{P()XA$QFOr>nDfw+q z-dTfx{BRHQS9_5Er-%8{r@F7F`9pf1KbWDbyZ&{kle5pSeaQ5_O}^y0UHom4mwRQ&%F1ADc&foGF zI*cb`p}Hz%zBpbJiWb*bhbU6Cv^?kq>*C2+(5nh2iX&ySg5`-~PStu*u1OU8mlj78 zvEisqSjp`!Ca*|FhnGj{;)!T166J(STOEni#C7%T(r_}EzR)S$;)>FW3U{yKL`1jV z;jO3A33I%<B9t%b7N;_vwS6y0H5e{;j zx+?UOJg;~!P$1BcraK;uInm8Rl`SkerY!6zxbSFFxF5U zZ>TFzH(7av_qm+CZgk zFK&$%BR`4avcpDt!Sagg;_A|Pb#Y~~&ea%|9Bn9`nC3r{$k8zIgnJ1;xeqlnE!ETs*$8*cTQSO!JBhW}cXT!o+c2 z@q{T;$L3Edo_hT8)5p&!o{>Lx%6PlN_2f!gr6zB}l!;@<6^|T#*zi&6bmL+{dfc?q z`gBHvb>)$Ypf`Q`lw$KSt~=*VEgFBKNe&yHOO^P(rZ!lYO!wSiqO`nvB7W%jSfqBU zb4yMG$}75DY}H;_;m(emaT-+_40cK3clU|$8L?zgX46qSSQ;iiCsADP@~zX+vYLv@ zk;T=urRBxG343(?I$T~yiAN4Ue2WrKcTRR%knw>M2dSp=L_;))Zwp8285{6a9oHU~ z&V}D$%#%x3enkaUHzT4VZ`JK$NqVsJz!QRrd>bdMl03w9<|oo69g9EOtkKHdq0&!s z0{5(JutM>FN4~5~@laJAgO=}cVjb0LeH9O!VIt;x@GX2) zc`0L0DAACvh_ta5*904)r6Ihm-yFD-iY=64LYwQ+@@tN$I8kke;oOH;SIUjU!Qhrn z#crOb)cg&Ay;Wv*Gu6R~iY#_;b|TN=jNq@}EZ zf!;<~CIn`bb4qQJ;k?ThMJDIrVBHoXUmGUr=R93Z8J0f+E8_QhS?%V|6)d;h(x$k% znD5eDM=Gz~vUSq#z$%2Mw|eeUvf9#6ok~O_`rh5o-^6&wZM)ctf8NiUUj)}Vu^<#mouPM&t(I%{7Oq2Sc;d z2Dn*6hiPruSjENh9=v_LI#TcEJ#>`PL^AHOYF?tUYjxV>h*HJtdeGFlnL0VH!csM? ztKH2xO*?FJ4Ut*~Nw2eKiOV3T`7=4Y_LNX*QH05CFqW>9^6I)sjQIzyuEUtO9&pAn z`Iyd}B9yQSW6ILmg>QEM1zU_&zJ;YN(~r4Xz2~N?HWApO{fn`cG6tChv+H6r@{Y5I zjY?;?!#UbSsUyQS|Fz<69wE2Pux}&Q1OI=eTsw~(MG&4pK!ga85IPYcB;=J1$o6Hn zLB@-)IdKOLNBfw)9lSfc-iNKrh!H|2!l8)>AaDo~2njNT12U3JkdR1BLd^Hoqo=!P zEh90~ZqM{|^`ok~Uft8H`VNg?QdUK{)q$CPV>=&Kt1z?8-Wpe;vcdTqOb*xa9I{rr znvBlxU)YB}Z>p74Z8hp#lTo*t5Y+y39u64fWFKX@!cTJm!>T~0#k&-z;+^pU`b{YD4%m{{YzrVHE4rf)&G>6qjiE^!)!2-3?5j*!A6*?)kf#et+ zEqj8<vkjZ0ns^g(`2gCvJ8dd$zn1D~ec01#|@3&|;-U+EjNl!pHRLH)?em zm@w7>Y!Au?Ai|}t@--*i1okVGUw9MwTeMs{$Z0j^NG%`;PKc&kw6@F1pq>RRxxsxf zfV+RQ-b~+HZcGYKx0~_eZj+58MveqEsNU2qwc$|H&^4XH(H)*Nh&+VWNRzTWy8dSH z8=Tx3wG~@x9JqLj`MVF-b+zG}exv!FexV2EEt_iTlo-RCS}jfrIE(O|Q+sPNnQhn8 zq~jBMR!NT5*eaDo{Rw9|g&n)^R?RWwlPKd@BIcU9rYOl4etFy%*nL*wwOoh1Ip@yu~l1(V5rTXg|TYx}Yz`01?8!`lsR%IeQW1dUY z&uCiD#$g;??MlN8o{p+&qfLY_5>z#l_E4r}fheBW8Rn^SlFU{u3g%Ifo>NqrVY@`T zuyP>bGqV|4a4(bLQ-rx9bcLo)c4rcq*)*(*?UVc^b9qKH4OeItB0FN6%gpgk1GIv5 zBCm7yMlcJVuLg5Ncz4i1uHa}xs5Euwq?35T3f=7#(AtfH9 z5y8dQCzWaNz#L^cT+@$*#khNbh=JC^GCo)Ojbu3yf<5V`w2M>Wr#7fVnLhzvuXlH! zwtDE45+6P$T}?$U!qwwy27fM!6P-&OcEkJIu^*M1HCk;(K(rtlRfqSXMuu&05i@{A zIB#GmGOn780dG3iJi7Y?2Sqy}v_Y(n(V}i+aC5=#Zk=O9Le@jNCy*OED!yogH|hq1 zBxQ(bI217YNUi984$MV~D1dZr07%S|4;n@<2OC-?B^+Iv%Ly%_n4Lz#6GsYC1i{}9 z%Rska@xvGysB|*qdA*=X__yWW z@XUP(*s>hpFB+VuXG2N7@$U{i`#f%9_^H8r>faf8dEXD=&;1PE&l~V`&kI_b!{0>y zKRA2E$N$jU_w)^e!?sts^8OEy%e@{B|EIxwdd)TpaE!#A!(*F=Ts8g);_!YRj;DV9 zjh5Cr{GRD;{CKvE!~1zMp8jlwz5ia$Q-0shvuga=&#UqDvB9(d?5FqNvJ397Bu*XP z&(8_zk6O~(cX%KF7Y2Vti-q%e{9GP>kH(Ae*cuSpcla-nN4$Fd#VH3EfgjK-2{ogbAOV4RfJUw_hZP5A8bBS*5eY0sB&hNPQj@FZx_h(Q41}wJF1b9C$ z+)t!9~hj$f143Jhkw!9 zKbzJ2$lzbi^4V8jacU^i7ykdb=H7ovGk8|dA$~q?mp>Hm-ghmj|Mz(i2d>{T0p#s! WDc#e(3x4*i!rQh)FCO~s8UF(I-9Whj literal 182424 zcmdqqdwdgB9yk6ePz)+2y23^gjaW1)XsV*&rYRSlYQegITLo;n6oNvDZ3dfTp-wd$%>ciD=!01CkiM%GIaUF&@!A{7;*tMvJvnNQN`XYKFzdOd$W-G$`5 z=R0T4IdkTmGm{k8Of5RQUrvse`RT8nsi~Cj2TKCj&>ZiFcbXQ^{Mumo+oK(&4HO+9 ze*)ObuN~Me^Xfoce|c5=xz(HBcs;^mE%TZwp?X#O_4VWV$l8*5)m&Cu?U$?GcB;SR zr_=m9`+Cb(E1h|@?`Iyb4JDvg|0-+0%&UDr)i$wlRs+P&?fn`!+uF}@p7om9PerNy zTCTL>TW;w6>amhq<~7rvs*LK7AMMGnKG~*zGOxT}5c~1#6l*sv^Qw-aer9|gUig1= zykhJZ+Gn*Vzy4iSUVbvKnd4m``(cw6@c;8SPP_I89IvnQ5SnUblzGKj)=pl!Wd7-= zoxF76=%q_4s%u8q_)i~w`e`RsEkEfLa|cx}kNi=6>YVAbG&wDCWoSmNU&Kmh@>AOm z#da0nzx|5R?fV`LZ{FU#-!(fceo4$f!mnafxz#=@M*XP#aLTjkQhBFhRD0BE*T~;4 zud;daNBtzrw=Ua!Q0K(!y6(7Y;^SinTl(97|0`iQ@+kNC^_@SFQ^H7xwraaZ;ce`X)Pe;{E=&`133eUyJ-ANjo8M|tk-Bmen*uC4E;P@z?Zm+#mb!rzEf6x-N$Fk^eD$ zw8L=8$0L9EXOw`4QPMl4V!w6V`}-*8)IN^8Tk`s?d<=;n@f*iIsgHWy-ADez`Y4Z9 zS~zoB>B92L^2JN4!sV4Sr%hhEyrO*Oy!lJZwbIhX%a&J^R)yzPhD%GW(BBNKDqj#f zWz6Z9<(Dp4UJ)*@2}_Pu;mYM#XgyoX7nFvo=U-NSMQLbWWmWlaZdp)SJ}+$FRJ9;j zvAnXfYRTeK`BQP~DYo5emRBs5%ziu1UK^{*E0@e$y5vfG&QcsHn<~x<*}BMHQo+!? zC6%SwJZuNe)bD>v+LK>+W%<0zO6M(HXxpu)^1oG<%mM!=)6CH-=T$6RzN~izY)$h& zH7H-OFsRL#QB=CJa*4F3dRG;!4li83vcgPEo>@{_QNGgJP#!K_w9tGjt-nw^zj*3& zwZoE%CE?Pls-@W-sw8lED7<8OMU`obC0$-wxxCU$g~}@yE~!|o%`BQxx?t&&@``Zj zvhr|nxs|h2q@sL5IGfj^%5tk%sw667R6!j$Q?P8zf^g;1-o;u_c||C^T>C@8^eLtD zuLze{NmpGEz9Lj!8eYD1`O5Oj(xuB6h%H)JzBF9AAb6SDUNf(B(UJtDQoX zODe*P%n0eP3xbuJ>^N^}c*(MIZP~n~Dwpc2rRC)zEffx_<|(~&`H~84S^2VM%U6_Z zmE{XoXbV(yX{F>Q_gK=a%&TSDJPDHm*bbmhqNa|rETmP;t5|O3TUuImMb!$kch6g@ zNwF4aRm-JchP6e@rA@U(3zjZdSBvZyl1>_~3`>)mFPB*_OI2y438l9!RZT40D%2q) z;|kl+7cE*^T@_SY<^S2*WO|(1$I5=G98)3|R;wH&XJM;(pf2w+K^`M@l zdUtxZlbw2!?{fWwY|-To+3rck?od*ZF*DpyBQ|2t6r^podf))7?hDhG9ZRbK0z6)97asXxdYb>Ht% ze@+a^ZT&#)AoF3BwLSGe+xy$LOW7ng^Sr~oWQpAG57v%=-G0j*lHY;au}B|kZa+ZF zNBZ|>dVg&^(s!EigS4qg-)5#AS~1f9Fw^^KvyuLtxqq&<2mkd%*qC!ZA4^!!W z+EtQPKbhxXndeWgy_PrQ`B=u2c>dTz{$N5D5c1PX{w%zWJh9b^Zzo@m_&E7yc!K;5 zc#`~WcnA3ocqjR1aD#j&yo>x>c$z#7*Upm#jQnKUEoX~WUkCXhxQpBccayu}9`fOE zFZr=>ANfgeKlzZ?ta1j(#~@xOp8zi=p9C)d_Fuvekr_x z{Bn4Vd?mb@d^Nm?_yd?)!gZ(HZx zApa-gyT~6)TJdS}I}xuH_3r=A!5!oq;V$wma5wpza1Z%Aa4-3Xa3A@na6kD_b>l5R z0rJ`(EZ52J-(`6*c?$WLkaxk$$oIm74r1?;!spypwz`+#p{F?;^hxo+ht? zYtwr7|104R@@wHP@+jO*ehb_~{%5$C{O-4`_VJPb74d%Zhv5P8C*eBzT6i(}^Y9Y# zm*HjP{cs%x$zMf$i2N;h4f(t92>A!_2J(+PtoDhKe}edCas%E%{tdj9{5yCX`Ooln z@_v|qcmF>b?jSz{ z?joNEcau+nd&tj&d&&O*_mN)=_mh{x1LTX~I{7kqG5HF33HjCVGV<%-LGl~nA@W<{ zHRR3k2>D;&4df5PW8{y)o5`Pnw~#*vZzW$3ZzJFEz14r($u}cDPX0PPLH;&8N&Y^( zgZvYCC;69fgZyiF7x@qHH2Htw+WEcve-73a4)R>Mi+nKLO+EzfAwL}MB|jSOBlp7n z=iOz2tk~KJp*oe)3=70rCNFSmTvWJ_ue+?u3_+4~3VJ9{~@N zkAR2Bz3>`xA3Q>SI=q2=0z5`O3EoVu!&}Iw!&}KOgtw8;g}0N>hsVhm!xQ8OX4e1Y z%Mjl|{`9-ndF&*wM7%-165d6A6+BIT4O~-S%#feV^PlVC4)Pn}F7iLY-Q<6Ud&pbh zUh;?GKJvfA{p8QU1LW)AI{Az6V)6~}67pB!W#mbCko;YEi2MV14f!YV2)O}oAm0s- zk^ca1CjSNALf#M0TUyBn!Q054ndhJ6L*Q}pBjE}1k?D0m0?DezA6ad3k?0Pi9{ z8=fYg2G{=3yZ_ICJIF7FyU3?~WnHIk^7)AOkS~UN$(O=?$bW&S$@}5HTbt3l{||yY$enN( z`B1o+6<$n!9=wG75AZVb5_ph&E<8j&A6`Sg z7#<<7fH#m=!(-%E!JEk=@D}n0cq{o$@HX;0;qB!2!Qs0e6#s4fl}mfqTjS`<`{Z``8ihC(ps> z8UgY_aGgAwvhpt`cOkxndA}Pel$Ep?uFNokA_FcPlGp*kAug^C&8P^b$AQ; zba*TIh441=x$t)Kh447}Qh0(q3{R3@3GX0}z&pvWgB#>G!@J1ufTzjtgKM*T_x}gr z4)RCfF7hYgZt{P?J><{Bz2xiRKJra)Kl$tM0Qok!PQD#pO#TtPg!~J58Tr@nAo(76 zi2Nsb4f#HJgnR%#2WcQ51dowB;mzbj;4S3C;H~6G!`sM@g}0NBg2%~EgD1$x!;|C% z@DB2G;GN{>!wvG8@GkP%@HBZDT)VJ$|1XC-$d|!g*Rld7n45>FCl*tUPk^ec#u2}50NL}HRNx>BjnrR4dkD|W8`1Lo5{b1 zw~&7aZzWH|+sOC9+sXTHv*yz{xdWaccfph7L*O0cN5DJDN5Bp86X0Fs`S3KkAFlne zcmGe~^9~33S%`O$pAC1D7r{N`GvHqGi{L);OW=O;h429RrEs16a(FTMN_YwRYIqrW zEj&nm13W|?gV&JX4v&!E3vVEQ03IWM1l~;E25%uh8Q;@rCI2Vl+sL1Xx07#x$H`xX zC&-iVB>8*r4)TxSo#bD@4f3zyUF2QxG2kRJ~B zl8=D<$WMU#$$jtuxgV~R55xBdipeYS9HWH%EaX#0J{cY)KNlV%KObI0J_{Zpp960o zUjUDh2jR`+m&04gSAJ-X+pXj)5Z^|=3f@kBEj&&hg(t{k@Fe-4;T_~H@J{kpxIz9D zyo-DtJWc)*T)U`u|KALEkZ*;%$o~y@lfMu5kaxnp??d0dfwIamd-wl3#5>5Na2I(D?k2w-?jgS$?j^q;?jvu7`^nqj0rG#s zb@GK+_ZE{shxiim_3$$C&F~=k8}JbMHh2wr2RuUlA-sXSrPDfJG4f9k-%S1`yoLO0 zcq{q0@HX-^yq)}4c$~aHzPFGdcfgb62f;hYhi1P2Kz;<=ARhtmBHxO3OOtyMug&S* z|4)KD$j884M`N8_ zM*aZ4#~UPHjC?}m%iuNSRqzP;RqzJ#I(UryMtC#%?eG@z`{1qQ55n8XAAz@%x54A& z|AHsTUxFveH^Do|x57Kg-+>$CAHuuHKZU2szk+LXd-wlcxLzFOU5Iy)r{QjL4WDOu z$Opo`*OcGi^=ohCFFj18Tnc8AoxXc$)kfxOPeJ{=W|HAm0FYk#B*!$+y8h+c@|)mk@;l&KY484j?YGwT=perr z@hg!syaOI2?}UfQ zKZn=;a>79;6C!J z;ePU3c!2x{xK18}7n5(n^U@OX+Yw(zeh)lI{s25g{xteS4S6f#BjiuO8_53&kCDgm zd3rPXI>fh-Z-BRwZ-TdxzXoq7e+wQbe-EA@{{WsO{}kRqZooUqcf$?x@8MnKKf}}H z+WXe{pv~*u{|CYy!=|4B*cfv3*j~7#qbFEEO-O?TzHIp0lb;~GI$GlCA^jV3V0j&8hAT- zEj&)%2v3mT0#B0P1@9nlfp?NW3^&N1fOnBU15cAb3)klN?*A{r9ptaTUF5IB-Q?Tg z9`g6#Uh*AqANj{{KY0osApZuglm7rOCVv#qMN7zkL3|l`fAtUW$xo2{0C}3;@;l%j@_XT4@(1BQ^1s9VB{sFv({1bSD+<-Tbe*=$^e-Cda{|Vkgz7O6? z-v0yZx^5#s0NzgSg2%~+z!T)d;7Rgh;2q>Az&pwF;Rd-M-bFqUo+h6J*B18f|2o`3 zJ{|5Np9y!9Ukvw+o%~hA$I0J>C&=H0C&~W< z?;ziab!;d3r-(Pm2Yz8)zg^^CAwEss1=q@Z_y2?Oy>tipow(0(k*AT5oBUU}hkPy8 z8(#7O_`JzSegNE0elR>h{(HDi?tvGR9|tcX9}O=fKMfuvKMtRpgviGtzJ~lvc!Yc^ zyn*~&c#Qmfcr*DsyR81uLOv7mt>hQM+sNm^+sPNhfQhEggeOZfxE~bfV;^bfqTfW!~E+de;V;V@^-kN`~`S` zd?Q>Z-wZD%e;r;zz71YRz8xMU{|Fu;{}Nt9{tY}r{vEu5{AYNKT*LQRn#ptFE#!mY zt>i8EUQ-+Sp@?rMKMWoxKN6lGKMtNG9|i9qKM(coBtI4L2Kjh+7x`p(n!FIMss9jz zZT)`%+(CX3+(ljncatxMd&n!`Uh)-iANkdAKY1-YK;8(~$^Qf|CchhALjG5H8Tq5| zAo)}95cxWI4f%R_gnSFUfjkM1k-rCTCjSWDLjEPZmHZoc8~G3LcJd^ympJ(^h)+lZ`M~e2b}lBr9PuUOE8u11SHXkiweS%64e%QBo8S@hTj34l zcf(`ke}y-bKMZdne;nRQ{uI28d@a14{5g1>d^Da9C&)J-a-B*yp#NGxIw-H z-bMZiJWak7>u_yJ@BaTK;vM8&a2NRxa5wqSa1Z%u8?1ilCGUszvyXf~xS#w0c!2y` zO3GfE;0(gx49C$PNGx2mTSBP&Q{}vu2{|Vkq-VJXdAMi2yKluUhHgXrdo!kwNlOF|7kRJP?Ry%vhOOTJ3 z{Pa()cpv#(#QVul#XK7zUx;{}{3-PxPLrQv^2-okLS6|kBVP#*l3xW6k=Ma%$h$ND z{sZ|9h;JZ|!DHl?Z?x*wOnxWgTgdN$w~`OV_cYqbA4GgR`EESNh?75t_yqY=@Fe-a z;2q>I!8^$}!42});a%k0;A!&haBXSt{@)3AkQ;Cp`PXna`5w53{3p1Vd>`CLz6HOZ z>nHDzf7d!dJ_xRp9|SKZfAUAG|CEpqL3|nc5%3^+9y~;T0=$O&6nKPuEWCmIEO?Ck zY_mjU450Gzz>*U+v#pKD%@4u7( z2k~X(pTmRXyWk=6J@6XxIDT&;LY_u^1NlC9jC=s*&1UjJ@D}oe;jQGqhqsX*32!GK z36GPX1W%Bk3Qv-chj)-~$9d@_FF?FOUI_0ZKOdeZzYwlf^zQ$cz#Zh}a2NSt{2rW} zd@15Ro{sz36d>g!l{C#*U`KRzU^3AwT+sVH|e4M-so*@4To+N+#d29adAn!(e zCwVS@|IQ%aAKpcNFg#5@6s|4r-T#k*JIIfPyU0hw-Q=gkJ>(PMUh)FCk6efQ$+d}$>+mM$QQ%Q$SdGM@@ja9d=tmwQxWAi|_#XMz~JC8s#h|PawX8d@H<+{2h3Zd>7WMA@cVTUqjvr zkB}Si2J+qT82Mg!Gx@LZ7V`f1o>(jSt!SS%@&gdxPJSpnPJTE%L4GtmNqz#ngFGMJ zN&XqeXM=n!;=9NT;A!%6;96zx{y!b=AiogqBA*R+lfQ+2?jawG@5On^%aD(cd=cDF zz6>5955slx`FP%5OnxQeOUSQ*myv&uejX&h4)G!KCU_0`pWqSlW_Sbneef9hgYahZ zzr$O|pN6-RKMQXokHg!^UxCNTUxz2ix51O-@4-9BKZJLZe*!nizk+v>e+y5O{{+{n zdiVcsxPyEE=3f{2fp9nZA#e}*Q?FX_mY1I_mLlo=SzO_PZ1v={|c^?e+w@r{}En7{tLW}yuV@9H%RV)hsX!RYsh~G zkB}b*Zy-Ms9wQ$KZzewh-a>vdyp{YkcpLcycsuzNc$|D1JVAaTJV`zq-a$Se-bsEb z+#s)ncagt`=T~X+D-f?$_wN7K!X4yMxQqN2xSPBg?jdi1d&yhjKJq8we)5081LQBj zb@GkyV)EDECFF0x%gEn{2gyH%hsaa#8uH!n2>Flj2J&urjC{Y8bv-td9|Uh99|~_J zKN8+Xek{D5d=xxRJ_ep3p9oKqPlb1op9k+Gp8+?>FNSxK&xfbU7sIs`z59O+*2xa? zrHFTthv9DWE8!mU2;5749o$ELGu%&p2RuN2A6zGY5ME5aE^hUo67ok7Uq;>r50baT zL*#LI4S50{Ay2{^$hX5|vmYzsr{(--mpX ziKT@_k#-|H-%G_x{Sr&qO{!@~Q9;`FZdf z@)__5`Ni-C^7-%>`4V_Dc?jM@UIT9>UjuI=zaHLBeiJ-Semguteh)lJ{s6p#{4sbZ z`O|QNydB;}9*3vN$KdxFwVK}je>3788ihx>6q z`A)D6y2J$oDG4cSsnfx4h z3;A?-EBS@+HuAafcJgv~oO~%fL0$zKoN3C4LZc{AdDi@&b@IpH#pF-H zOUVBPFC%{*9wgrY50NL}HRNx?BjoSG8_18t`XNUCAH+A4k4F2nkbjQ&R`RdlZRFp= z+sVIw)tWcsC{ctb&M7WQ965LO&!vo~!!*%jm@M7|d;U(nr;AP~C;6d_b@DO<= zyoUTrc!c~~cmsI@JVqXaH&w|&GpAC3)1W%IR3hyAl3*JfI0yoH8;a%iUz|-W6vxR3m1xS#x1c!2!RaGm@#hD4C;t}l3GyG|N%CLe9pwFYTlsgA z?+-V~UGOgQq3|^MFt~Pg@BV)@+(CXU+(mvO+)aK8+(SMV?j=7H?jxTJ_mk`J0Qq#d zPJSW0n0yYrguEPHMt&JQNL~dGk=MX$$XCN7j~yCgC4 z!SH7C-@#kRhrwIPN5I?2kB7ID=fmUVr^6HE6X8knDew;RbK#xjPvQ404Dvr9zKi@K zc$$1JT)U=s|6c%ikY5USk%!=J@|AE8`7`)ERxkM)#QVsvhx^H!-~sYG;5zwV;Kk&B zgO`v$0WTw83lEaN2oI6J46h;I0*{ct32z{O2OcBe0dFS%7~Vqu1-zB~Yj_*^ckp)d zpWtzF4dZQs+yPIL9|Z3pcj0>lo#aChZ;)@reAGogANTKR@*|Lsc5Uzee+=9~?uEO^ zN5kFZr@%erW8q%%GvPk+DR4jedGG*vFGFxtP2ybSR{^2P8F`7<~# zHRKhDkC0cv8^~+mG4j>$X7XBi3wZ;)mHZ}n8~Ls9cJjO6aq<>;f_ymIGfDms;ycJ6 zg?Exa4L8W!;a%h}!PDfgz_r@m{r@$%gZ$rc7y0{eH~B|!5BcYCFZow+ANjX%KlxsG zfc(F3oxB@fOrDE>7qNu=KzJGXA@Cr%8y+I}z-!2lg-6Iwf;W(#0*{f8hc}Z?g13Fg#BF zJ9vV87(7Ytfp?IPgm;pUf*a(g!Mn&W!uNaAzzlCep_3r;a!5!op{<{V)@?5x^{M&z7Qi=p!G3ct81Y zcz`?)u9Ke#FD5?~UP3+&UPgWvJV-tj9wI*vUPIo1>pDVy1HL!XKwgs>|H;STduYw% z7vQ)pkzY5+#el5I{JPJ3+Z-#e~-wIEY-v!sM z@7@1f;12RuxQqO8xSRYLxQF~XxR-nb+(*6z?k9f>9w2`Yu9JTNFDCyKUP8VTUPj&p z50d`~50Q7nYsd%gwZ?}C`9bgo@}ck;`H}Eu@(RprE#!HKZzUfEZzDeq-cCLq9w(m+ zPmmYFljPIk9pp3No#eCO2KhXA7x`j%ntT~tYv|qopMT9dFAnl5#Jk8>!QJF*-p2S( zel6m?1@ipWx!6W1^ z!yCxAz+>cZ!kfw8fwzz+aDH3K-$#5K`N!~f@?_@uC%J+61o>`wlKe+_2l;>Do#g$0 zwEC4negM3S{9t&R{4lr{?cM*6ggeMbz+L2CxSM=5+(UjU+)F+d?jt`F?kArD50Dqa zb@B_~#pD;lOUUQI%gE=!gXD|gA@Ug3lQra*AwEK032z|(68$Ykz7p}xXYd?-9ZegwRMd;~m3UX9<6YbHMq@s3#U^P5SRk-KiQ>KkOg#qtn&+0B;M zkbB?}^5h*>d<(hnR?Az-HRRJq?z+i}ZzoSSSso|vf;Zo6wZlO9H}Ff%e+l3EtHtKW z+Pu}~C)&Kt=JRas#c@?B?A~sRpKpuz*y8OTx5ZDg#V2fDW^CZSJ!9@iuqc`~;hOY(C27UYn1$xzFY&+1zjQlWiWbxzFah>(uZ1YoWUSji8 zZC+;c(`+8J`52prY<{}UYixdo%_BDV+q}W%V{IO@`8b<5+kCvuTWmhT=B+lLX!ACk zpK0@Uo1bO#xXlALPuRS`=1H4Rwt0umr`WvH=2LBM*!*mpciH?Lo2PBA+g!tZq{jF{ zn>%cNuFYLGKhNfFn-|&KWAkY?_u72A&3!gM-{yXs7u!5w^9yXQ+kA%2i)}vB<|Q_t zW%DwdUug57&Hrfgkj+bMUSspwHjmhRj?EivKG)_kn_pt{|JUDs=RERfz4mK|-k7`P z$sA3umwyngJE_;c?AT~ly?f04f6vkObdP*MUYtj1Dn6*T>`8sx-Q68C(`sS0C-qh~ zt%m+RsrA{kT1f3lJ(W$X1=OC@U$beoaN3i)C7V_Yrah@^vT1b@?MYppO{)dcp47Z- zS}lzBq%O#&)q-eGsvw(I3!y!!{A^k+fcB)0&ZgDEXHV+jY+5aN_M~#MX|>SVllpdF zroL){BlXXw)xt*VpG~U;jnqGzRtp)ae>SZaFjD_)S}k0p{@Juzut@#0X|+(1`e)N> zfg<(Krq#kk>Yq)k1&P!@n^p@Esed-D79djpY+5Zmr2g5oT5w4HvuU-^koy0cslUfe zf1FLLg@x2Vn^p@7sed-D77|kbY+5ZKr2g5oS~y7kvuSlBBlXXw)dE85pG~WUgVaBp zRtpBHe>SZa3R3@UTHOFi{j+JcV37J}(`un0_0Oi&0zvAZO{;~0)c==E{ndg%&VM$o z76MZLY+5YjW{@Jvec%}Z?w3=|G{@JveXr=zyw3=Y0{@JveSf&2i zw3<+*{@JveNTvSSw3=4|Jk&fAf^7<^dHRh`fOTF zlv4j}T1}8r|7==Kj8gw>T1|*j|7==Kgi`-ZT1Mj!A5o*Rw4)k-CH*<2dHesQ|JHl| zcPRY^rC*`+3zYsRr5~sCLzKRk(zjE(iPH6yUQOw0N-v{yIi=@PdKRUpQFBlMk5T);> z^zD>xqI5l_S5vy0(#t4aPU*Rno<-?tl%7iIiIg5g>Cu!PN$KH~9zyBCl+LB}uMg7s zr}QpLe@^KSDg6$m-=Op>lzxHI|D^QelzxcP_fqHvN{_Us3;wuHlG=*}vQE~UCVuv&rWIURFsoqZtQq<>U$@F&zff-+ zFjB2@^k`jPv%KcVjY^r0^`^nIW!Gpf_G(v@ELirqM;R_I*jM zzxC)hMz^fs=cep$vaTxF;p_to5q9^l80K; z%TZtdN$oYJ-bT+_beE0(X3;THlgy5{3gvejH=3osD$l3OL411Cl)Pd+x=D{-mFLo< z8x^_@w=A^urrc{Dko%A5b}8eYtSSqkq_RV zqwRDqI>~udoq(oE!-fwkY@Cp1Tq_l*P48d5%ei(+-pRE_{sf2f`YYvD#<@1GFBnj( z=X9Le-6RL@%0|6uW?n#V3g`Lt%~SH!LQPX|0_u%%^W}1;qno7oHydW` zm}g$^X|Z|f?(UsVDX>@8`(|1;qNb6DsSQn|hssO-j)K|=c@j2NyL#lJ?C}~WbVy~wgN$qE zNmjB^uicnaF!qSNHJ|B?t2LwXM`S74|7E^9+L&>+^4uevjg_)Ml2Ww&RSNDmwwqmG zjMo;m!py|#+6(m)t-kK8zfo@d8l^Al*Sy>+6`4J^U{1l@f=dcYH%hDQk-MnWF6jpH zey^NT^ZqMSIcJ^v_kPS?z2OaM=^x~luQ2+ux}6;q@oUcdb#i$WMZYv&-`m}tdRTQP zb>gI1oOS9G8L7o#vY%WOC#c=m_U!(u>>hqa^;zpo8yCxJO{0fku8@bppd9Sxg=K&6=0Y>)>fAsIf~%N$War)~Wx3j=C1=g7QW}qMO&L z2PH;IE=IXDrZfe+jmN)}Eb4bT8{U){$;)}uCV68XXxf5ZW?`h<*Gtw#O$+lv=QbWH z2R9y;y@Z>E%@Cp6EPBO8*I4wkjVdfUhc<-=<1A5mVIATXLM@*XVV)87}7red)0Z6LcFPlnWkK?q|FcsFOqO`+cW02 zF}K+c-MI%xkc+Idu=eE~<35q8W4~CFQWvt{xY-Q2DlcHv%ez#W^e1D7jCGp>hst0e zlg?)212yzTH=8{_YE28HtnsBvdbBZIZWYz+)nXQY%+>3ADn4JbRF|w=qsH0tXcE_B z>Sxu5dxoE3CD!mWP;#|~pPiXY#W+f`khXKnb@3aQ?o-0Oho6M(DedF9$A0zRrAA0~ zFDqwspsjoxzBMy{PW99O9ouGRGPlNsT-h=8soX$IZ$~$sV3?isJjq6NQZ(rVNvg&T z7^ld))J4{DN6BE2=}G4*|G}K*#=K#3GyZrh{)kKy$Voq3#UE^X?&(r9U6ul=P1gQJ zJ#o@qjNM&)!XFngPk3s7nInudrLsM11Lsiz^L{&jS7G$6OLQ6gYd`BMo;fu?p1(zA zj-#dFx`&*1SC005&pzTy?p8xn?tJw!HXR-!qt%5HWX?_9oz9~o(igOic$N6EX8f2_ z)XVYv^k|p9{+qM(_38e4&L;h>ec?kTgOSL<(cLLi_mrOf)$@SJ#9Y}|t3Gj-UOVyW zKg(M^`g!<3y>a4D+0A%%x72K*lyy_?hmy{jE62_rU+te-DH~B9m6pP%Bo}Ld-ngiz za(EtGFf+efo*@Tpt5zA9^5bfVa2YqKi$*SEhq|2QN_H4t^QzCiMe>wuSuV;o&-SeM zyw>G;sIiy)Ybf93)Mx#}7%&b>b`3nAs<+C3Bb%qqAM308^9MXLc-`Q&^ zEu)C^kGtgQo*vyTn}3R{cN>j{tb8Lf|*IKF5m5k7tIlB?3m5WIj#SYA&^~{WM_hG2Yr^ z2=8&e+T%rYkG*P-AC1eg$6>O^vvS6}r4&6!7_Z`QGUIot_}xYU;-Au_;#+zJk5Iw$ z%;3+$2dZ_}Of$H;Si+=^>fmP4rTxcASg)P$lL^7d6IJJ1&z^5*{WEePIp-y|bzn^8 z?UuY{j8#oP?He^se5}`|7p_=p9qY-LdXBYK&dkm~sq0o%phccz?$Mp25~;JKw$^o{ z8apAbN7twBl1pASWjoT(o9Q2opxRIEwnG5dg>|g5mwJvhUyVD*NXCXk29aLhX zEh}vaO&QRw?c8QoA-Y>_zea6W>HN4lWmf+*$G6PG0dXGZc<-em8_4K(y9%6)f#@6G0r^5 zW_4i=ajw;BjVr1LIM<$&BiriZ1}jPgV)F!KKj+Aa#`knFK^XEu>SM@ zy0tnTpTEP{CpTs?dzV}+7gL=og?TF@lko(%Jl1d+FMc8A9=o&JT#P!5Csk72vKtS{ zyJ=F!x+1fT!#|d6l;{StpB2dyDvuG7Ow~}~$deFtZj1`K0L?{%d5x+C!+~K&H+nRs))hk{>o64=+to!Y-QnZURc(4tsduS9keyODE{a9` z70x)svIJOT?{#&snKFGURn8{Z3`Z61s5Xt zITd_dHveq1Z#L%1Rj!(Sjkysc=!8*bvoEpsmO2_&stjhEM>Fe>)3(_-8v9>n-~X2r z&HbnL>_1NJe@DI@bo(m^vPTrGNElAYDbZW{B%za$$u_^-z(`6@I2 zHjTMkHW&|oDodZg$~jvU%aLcJa>MdP|I{z)9L0Kf!0O?u^GSZ`o;luH-K7>t9>!Kx zfd9R}$gJ-Ph_GZyK{kik0bOgCu968*H@q6InA& zl}>y03HdwJ%1gFc{X-sh%8d)2yF|A~-#1>B*zt3nCJl9NE)E9QL_Y|J4$v3V=4S72>}ioBdQCF&->mEtiKn)0-yjlAYw) z;6U|o(YWC}xgVJ-!&zDP*o~`)%j1YC(az&L&TR^xC1d-cuc%?YD5u-_gA`v1G{5Ie zPKlOl#@&*?dE+Pj>E_Q=i2c@Yv|R56(GD4@aVL}8*k}%K6Qsa0xZ&<^sLH!nn^rqj zb$aTt(YRkSUu3NZ?ES+pr}L~EsegFY6Eb<&?W~)i2Ee8I_j%{WycdR)}4c=q!&NQMiN9`gt_u6{XvsQ2N+iEYJwN8~r)uk#^ z63KPAdBg$ts!ghAPh2b;&AV>7Yz~z7sV`)UTIV$l-XkA@sE<1a*Gmxw|65YJbLt!F z;O?U6zM`g4!>mF#9$F$fZ~VwAnA>ci#?wlSx1=HDMp#YMs~U^dLj0q@_q6J*5?|0b z6pbt!zmko{YEv&9(8K*77hWX1r@-ktJCJFoBZS+f-kNc4W?OM)n>V}dB-v&bSZ4D9 z(tEwe*Z&b2KPS%-9-}sRq-H5uUo;MIt51FEj_j7+f0O!LtTru=QU|}N)*e#pRIb{f z)}b=}yN$o8T;!d{xJTZlN+dq>e5TjAsXkhIrC%!NmDw3}>N!iPn`LL?XSpDHu2=c! zE$&==v;84IZht_tD3*CPQW*W-ya|=H&rrSbY?t12TEC*EKu+Y$ z5$86I>R0{y!p5RJM`83=J-Sn#YK%=(o^KvUx~JSN9Z-1UD0zHQ7+oq$JGn#YsbluJ zl?zu5U!w!CIQmwtR&Z>q^D=$7lQ z(45D^*G-GQrH}p4St}n^$pUZqG17SpU(E4Hm(a8UJBQ(X6g0?jUdbtxwlkxvCEB@m zswRi|OqUDt_^6UAGwV6w=oN#TivLsS zeBfQ@wIkIbqwlHWc+IZ?>a{=TUcF0iTHVhWFMXjP8gGhddEMO;yJg&1@pgfvyhu5( zSI<-Qrdb0~_u6#s)lWxO51do|_sHt~s;mDd**J{vWp<2iu;sGyrYX_*HJ_*qpFL2j zxW04$k=id#ZBVkQP5tVM`T$F7mnRF|1?_6En(ADeo|f}w^v6Q^Czs_3;lSE2&#HYh zQqZs_ryyeFRDUt3t0?EyozB9h3v${A$qvuT$fw0rd*!?#&o5JNNJY$zgEJd`@+xy?+g(pc#YW?D@ER{Cj`w%$Hmut`2__H@_;P^iqQ>L& z=zpixe-^$-Z#>7L?zv~n5>|`oW4BiQQEyx&m*C7Zq|+v=W;agu$mU79`o>rHSu1Dj zO`{Ic8z;-h2l4PF=4$(!?j#l*SL@Ns@opm?M`=Z9huKI1&SEv>_zh^uwY+NcImCF!w zid??o(~al1t3%2oke!3g_S9?RId$8@!<}m<^mnce=SrSGH=g#?*wda3e>SZ#FHf?o ze$Lhog>v&J`RxrKsh;fZlL|;1ew2y)c<0-whpnY-3(lVLQl1;hQ23)-ak|xbQYUvJ z>OZ+AkB#I;bmtM7{xo5~l|K1gBiFfB?*63j)WyR-8Rm{yIdsDQGJNabM}Ep#anOXL zR=mIS1J&L#F1?+JRiB5{#jBGtNKJ3bJE2e(9Q}>waQgesXl>RBwak1TtNWuTD!M((_-r+p{P2_MtYU)n;AfNG@Fn@Uw7 zFPdEKliVF&w0_h2duPn3%Ot~BG zlb6Z6nHyWR$d(C5-@HM( zPPZ{qPJ5A>fusPrsbV3VC&_(8D$pxknez2YFG_iOr7KddUg>a3>y@6L>XM-$)1Rey z)-zIk(*XXW>e$9fa+`!D&btNXKv#f8NR2#?_^e>lz!B;*IQ7*MDZ6oUrWXI-ZD8wg zF*O)XmWxJpH}!n-s`u3LxlBI#{jz(=nuv_4QJI0`;e)N?$ZfQ-r9%}euIAyQsQIW+ z-FIfjAN4gNdFDAox{G93B4>56JQL1-ok$)BN*_mD1@7UMLsdtSy?i zv`QK%I3QJOc14MoLYeWeW#T8vmd#qYvbx;Ld{bb6hMqn}o~vZy@6N;@V#ZfgFI{Sj zw|ct7Ta}TqSAD-rYUQkZKw5{JW|Ok)tJR3LTR&{CUc0HknL2ETtO)xV@2ihuRRgKtSJ z-Z!!&WWY{MlR*Xf7s}m*%v0)H zeCDk3jrn~uRkv}H)Bn`1{NLHSskVGh_EDA6Yj;RT{f}{-JdiNk^j8_MHfiIgG)~Q% zDx<~#Y0p8b3~0aq$TJ#sjCUpMe~yvUbBxB-dHFl))ivO}eWPkjImvRQrm7rcSmscF zQe&g}4YKHl@P2Y4)%4d`ohR4)ew+I3uTr+NC=DYg(pjgz-lU$>{9>NLYWcKuw~`=uz%PiJ3w_d*`{QG=!eX?nQYmnY3q}FA!Y}su!T+TGTKWDo0cXBzKr8h@S^CC9qWf@D)d{o`xe7VPY@PIt|Yo<(I_rE0tkOv=9 zqA|x>n`LB`JO4q_FJ!DAkSBN0)#K#doIJN0%JU^iQnIfM=%4O!&XJLO=Er-SrJw9^ zUNrJV*(&Mni<~Ea>a3luhR~+L+aAFXo*BTcTm0kX&~mKQ7>UZB&8O8j093C~-|=`Z zb24$sM%}3)Dp+0IsTbtj8nr1v-zHFNhv5wOnzD3xWn=7KGI)}V2Y-Z)3@mSy81@(gUaX8iR{sgN3<6gTERU85d+Rpm$>Ril_n#HVqgcWtfoHJ*1!PoLVN`*6^twqJ}K>xug0J zuIHhGT=dm?^xtx?9bTrEGGpHhm)CD`)-_3F<0QA5qOW;FeLk@F<$m%guW^+c`@#de zhdj7aTA^{4+{!HQPl;Y8m;Sc!c)jslN4q)1$yIQa9z9Htp6Ae`7dzCNCp(8nByU*@ z^fEa&bFI5gJvv)fm*(xs&JTL7A88MxL9TK%N4#;eRk+X9Bk+*_pEV{Ip zUN-0Mmx+rGNvpU+GjX|>tAJ?kC+ej!ca@d;Kwi}PO5`F-)>+#pTd99oscBZ~33;(M zfb~4r>|>2m9eHA9u41L~AL@<6WVDQK*!yyh+;=ptR^xxzX}m6HEbE7hn@hMt`5u-! z!se+S)hvy(+>tNj8JBD}``tm^Lq=Jf{c5wi_=XHqP`{)4Hmg5n+A+Fe=gaDP%%n5V z)69oy@{rcHu$KD>bH${-A5+wLk}Sf_TebVu5gIRX6*VrB=WFs@b=81rW50A>FQ3`^tl=DDu%>^K0rVoRFsmKkLhb=j9fTecf66rtFf5zDJ^s3W-!vU#LTl z{j_RqVbjdv^8Blx+}PC>O6PCVlaZeWIj@@~m)?ZY&bn#pb+)r^u56pI%2~Hdb~Nv^ zv2O19`iQe$Ey|@ayxDcL`AuxBU-TxkOzN9XmGxFN%oS?W7>6p@JFluL9H^>Lzd%k= z!RE8ws*75~w;rA5+8HyCyAFG8dq7oQ-2kcs=M%-^p{e9=k@!^mO^<5sz;}~BjZ*% z>-Wk`Vm-Fptp*ZftNN-!<5XAS*q5Ex4U>K3>l?Y+YG>Vb@?Nhsa`JbmhKo*hrCyTE z)zsrWSaTj6aLFH!{PCHKp6ycNLirH1C>m6AzAPSO<{m%Q;jESUP^v8=bH_aMdlB+o zjgO485dh%Q4v_&s{u1vWq+%QW;4mRY4g)waA2i--DT61;VL|wXMXeSVIgx`DjfTY zvrcY`rKL~K{Xguzdtg-6_4qr100GgHAZWDsb+Dl(J}^yztDG?)_yPna_p|msXC9E+ ze((2p@BQQc(9GFqKi6J+?X}ikd+mK*{3){m_?9)Djv8|EHhHCyX41AarQ@)*-Dh2s z8_2Wq{nB(N#36PomYG=-^Ubu9%cGs$SZoSI`-@}uQ}G@m><`~V@7 zLn+pW5(bV~gk4zZG=Fh?MWshJjna;YZ zH9S3&T5wLB%+$(^AwNl~77w7Eb`hGTAbq4zIY|egGM5^R@P9~boFYPFPoRcSL>&P~ za(4X`lnUy$QX}uNb7dF-Q_X}w5IN>XqxE?e$-2sq#*-s6#bfMFa@((N z5$Y<*hB&%j9doyicn^r+4xGE7OO5~Q3=LsG16-NSLPe|hQqu9gAOV5ehJ`j_;nji=Pth3KMPB5Wf zDuMQ454MFOH_{wlZ1m3%xXx#9}B^A<8VunJAFG={_8-3uRT3MGs^B{td|?yTn)=XHeZ) z&o@fv`n;$eHl!&Zy4cgut&(fW`eVV4f`hR? zDj>A~_|}3Qv3pfc^{y1e*!WLrSnX$%`%+$1J&GQu%kV3Wqb!9EG3E8Jj)BJ7Rti2U z-UU*h^)hq6d&niVG7^j$vY<)G?;MGU3^`xLGeH#<2p*vZuRO(|#~@F4);cn@1X*dINcf?Q|5$@)xs z`0w;>$Kq14Dw@)R*;H#r`qapyVuxvQ+zDti1b&%}XcI)ZOEsAug8<)t6Ry`az|{w! z+f>;50Q<~Mb}^6&-MQm`w%RB{`92Mt6K_TaDPhZ&#%IDelE=IC;NpC<;-Ivc%ifRJ z(SpMS??c5O28#bkE&5I&KD6Ii$0e7CI{p_95b^QXTVy{Y%F&O-Q2Y|~BqH>_b^y-6 zJ`WVd`aS?*H>=yt!b8UDjTzfR7fAc(y6}H1WpM>Y7}F_eU5y!3P!#WnX)SWsQ41lB zzCsW#e=OJ<`y6NIczbIF+p*n5Iq=E)WfO6tzsu^I-7omwPl=&#jGAy4 z(Q#6xS-vPwpBnWi8Ce-TrlCxgWfGW$Mm19sD)N_`*|HKhvSwp}E^_vwinKQ0Nrkjj z_#AsmtSn{4w;jEz0u zjN2^jWW36yyMi5EuO`#`A|aYac1GC={Ww^N%YbZQ3O(aFt#DeRu-7?JBcD?$4v}a% z3^tqTBJ-rLltb;k26W>kVol2IO0s8}mM^1gZGztdPZIal^u&A`<;+aNFv{c0%+;tfXrRe(@hJ?D*Pf?VoKlW296gPxGt8&JhM~m zFlacF6q(vT#vfh-#Lxq4()_+E1Gg096<#OHGN=}g;b1MZYfXH9tHMe65PJA;)2FOE z<9bui^y%=1+bb2944$bOLs4dDky_sBRi;{D3XzEr(fWq-o_(xi zQ{X%fo*R3BN2JmJ1fDa#2A&&xf@hj_)IrY+b2NH}g^#8wsV&16ezRNjbgL{o394Di z=Q|SPWxZzq_QVlefyx4gPK{$CF&~|AdyX+pq$ZM;KFRoHD*##O6z61g4>{KX^V=+q zh>-PC%lDKN-fCo-h+8usI+GcL1m?|4!J_=eQ#*@9m0kwLWxMlS7FT7e>_uA|2a$n7 z%_@VI1F{Ua%5t3|TAxa$&l^tc?GKdudC&Cu4r3GVrz@`=^U1+)743H6_@MN`B=}7RY{`jTc$F0l z6%LAn8lRs|eM6G_ktFccc*&a6o&U2nLH&n2|3x*Den8}=HPfs6l0PdBugs66@?(!L zPuU_}mSF}J+Di3L%YTInil8RmKIOgts{9G#@n>p*^GHRSy})}nTay0+cs>6nyzC+*e-RNZh|LP?ItAS{%3M zoQPW)R)ya(2<2blSGcH#H+UPg@O!jo2i65HE%<;HWnS~!6nM|Y*IYq+nuFK^f%fg= zp?xC`EvjxRC8+blk8tSVI5^|{SnEr0Eb;V1eS~ZWEBvm+C7#ny~1PhNAWK6t9#|IGxCGg^K^ZSH>P zNe3sK(JOeH-@-QpgPUF@nvq#h`CCTIJ(6?zSH`(Gz|Idu7jRIe3&T017Wsw@oZ#j> zrFAHEZ>J3NS;!`#$jhUX3H|JV9Dlj+WQ<{5LdoY?NXDUr2dGmR&FM_C4f{ni(O=#Z6df=XF;N6QX1 zANkgzOykKN{))lh3#9G1qI);<7=LB)?Un<8;!}=$<0~qEz}kj)$);7f9peQ_VsvVn zcq5bHw66CP3_M_UnARsaJiZu+`pDIo*48T^XU9LrOLM&OpA4>WjyKQbUti$d@7 zLKC<4itPu*C?INiid$?@aqJHI|&?bvg=0RVDLrzjmOp8R)=e!Rjwn@i@7!{(<9n)X0+@} zcJN+odPLQ+nkX7KRtjeT&d@!9$RaE<2ZP`CM;7A3@uBQ29ehzJQ;r51Eeps_#v3%C@=?%pN*{}33|IRUlAP%xH}CQ z52|r=+Tu7nq2f*7#vjg3H~$rfr;|sk^ywRA`_X6I`)n*oEsDOnhd()8ws2hgZ1?cT zQr;O4Z7+2Wwkw~9?8v0-;iBe;4`+tT1Ce^KLpd|>DhQT|A4}QqggJ8=$+LC|K{gK; znUkZ_hkN{muPn+4q}kX&7k&$u0P$YLMR~uy5_5n|2w9HBnRqipik^`0gBJZs@I4zF zvj~sByF_D%IX%N3rSMOPZRpghl>InK9NG4y3|O%_3WaQqp)LZ_IK zTa`aXANze744T}B7ng`Akv_poe9J3yvc)l{*!slj!Gq#NrIu;C>5y3G^vwXVKe93x zxJgr{O?9DxYmeRmAAm#$V7Zou$<{bL{W*J27_g9OgWyhV}bw=efXnE_I%FInN(E&)+-G_0IDJ z=lL;&CiTANymvXzG^d?I&ihI9K=O%ZCC>|-r_XuLaGo{JbFuSW;XL1P+PTMhciYW! z+PT+>|Bdr}%6XpQq(A4p7dY=%InP_1XS^Ls_2vL zk8b46IolFuKbwPBoPX(@AoI{;d#@+engH1=U+|^&I9*F!(p-GnFP(&TqD!r{HrI?42}+n$jGm~3lz z&)Ot8RWLQ{tW7GC+M1;uhoxxUHaH2xpb+}F$O;eDgA$HFUo0E<(b~=oSuX@4-xR0D zA?lPTsNyo8kL*7KH}i2IiZ`a#uF#vpE7c@)_if|&XL9GNBN8c_dEy$y*4xdGNIjtm zqCNAsmCJa}6aUle`s`x{$s6uIpBOit{DHh0GdpCrH{o>=!ngWa*`+U5s4k#3sY%MQ zhksq4M<~_xSKCtY?s`JTf2SaVOH{O3R5X1=&cWc=;>fRefdsS=sXs}N`rQf&WLob`F^;D(nipgkhh5axX*?>B9ufD@M)ky=F{ zE@W7B8@#DD7XHv}t!q^h%rZS^$-beSUdb>kR!DEdhx;uX!=bpMb!USk?)XT@qxPcN zX4*UU`d{GiUb4(%hY=HJ&5m7t;q`&&qy4Zndb&Crj z))0uS()8=EXvrB!^(xy&2Dz^pU7soSuPXxXK-wPrJ+`R)6?Zw=wwTs7X;=Kt)3#VI z`Zl+u&n7#9XJf|~XPY(cFO|;8wzJeb^Vr$Sz`iv#ULD3 zUfrPgsBt&Id+akY5@Ai!9%VrT?e~DI{W9JgXk^m%Mp~OzYX)GN6=4r;3+>9hVVX%$Pe@5HtqV5MyEwCv`RLmq(jeBC zAKwP1KzB?rAUxjGoBj4fM9H~WR~{tpN?5*E6nry0kV}A5!;h%OxU^a17FLj#1EP}o ztrv>%smM&?>@7JD41*W9`#Pm#9{VRhgVCI9Pr((MDmb~-$6n6aB`@LPs2?eFS5AY} zEmNDSa!u=RYbCKvZp=CP3Ch`5{6=a7~4*Ii3p`1QB47qyU(ts%XC=Liqf#n3Jjve1Ox@# zOy^8)ndWMKn-54f4iFdTG)O4h7oEgOkKnV5OW8D~pdw3GPWGpI^Za7eb=;{kji{Vs z#IH8JFpy&!(ccN-aZ-U}ACKm&VsK(e5m~IXNaM_h={eQnh&dbeJiz(?+456u7vG@N zu`!1pmKT|a^^sCMmRYzH&`x4OMBS}Q3Vo5zoIZ!TaoV7PO z4g-{ylDw@HEnA7nyG4uzAoMc7wNu0;6f@Jb{vvBXS91PBOU{$Ey!^Y-@}LZ)_ER+# zw4r|lL}RCD0Eo-fB^=^EC8SEMx70eO#*zEJ7Ay4~mhzE3@H(ndH1uwWb*pAjahJo; zNYN;B<$m#DDff#jObLPfm19`3$B%*ucN%rAwJ-aLV1^ZR5$kEbIyVp<*KO%@T;duMytz2?xQG$I zB}dzqmia55!($sLQ2e?5=YpL+>m8rNQJTUnz)h)APAJ?4khm1Vx z0^1~gA|dlworo;Mt2{urgqS%X2;J#>3PuvPUg3D+%JT>z?{J^t&KSbsXELGsahNfT zyHDYLLp9B4wPGD(=}w_fK`)%={vQb*_GUzeyfaDN7FmWQeD_wa&G1qTSr?t0ri7xB zl1M&`%pUtHDuM(xKlzg_wQd$$hj4hHr4!=LQptxj zWi0LUgtj0Z4x1=D3O(Q(33|f*h=7mTn2-F__~Fu=qf??IzYw{UVIO;tR)y@Kw#nf! zU%*%XLIZxJU2)-8%XSFyWtNH*paLH=L@6}VP?1`yNywDYYzdVSsFsb78~hcmf?R&#-^>ecCL1Clr&@re1sAU!-cLu^lBroj|q2goHbOm#1D1Ls{`HNIqGh@hkd4 zE<6PW*_zGtaJpt!0=(8lI1@{J>^yz|v+H{)6WZ}NNZFq{n?Wp&%!8wTCCB$$MJtY6 zn~#ZbcITv-yl}vF>F9#DRKM`=2d@1b_r<7SKKG|H#x~=dn5pU53lAK7NlaT%pcxGv2saFnc2|WJJiKFCMqQ{{`c&?t;GSOi$+2S35++YxV zmp>$9b^C2fWIWm_v{M`@omtYlHMC1p%^Qm01tOtbY*~TGu+nJl<_tx*I1S(}@Okjh z++!z9VJ|SkG;Gl+nCo)V3AJ(=_Qk2fEez{a1?e(xqT$u>(J^2AlkH1!@Wej!y3gWcvg>4xcg!DL$5dlHzPa%ArJsP6^O-|_mPi$wI*z7TL0&f> z2&8R+4oAhN(xOBEt{DLgiV*^qW<=#)Qo*yp!;?;+LOiF+c(6?TQ1mKIFQNl>+cVi} zDCM${*v)juomUJ4U6G;a`Z@FhWcS=lwGs3z)*zy3d`OKVh-#P>3OliP5^#~focwAb zigLcW5!6_B%86+aGT)|?g4iuUM(SgvO7z)I^vz`RHIK=e8oY(n`<&D?Cv^!6P09V@ z-HIcL(g`#-(6+sjQx37K38|Hp@GqenImF_(ZYmO7fFqB6F8ZfBGdELxw9{oOu?xw_ ziO8I^D?=;f$uXMN?+OhmS^3l5TI`)A?aKmN9VEO}gq`dO>P)w(Ou?P{ZRHEHLh7}2 zyL#1{&~J&;uQCthTG9uIL8i%aXy1F%M(|--f&NHj?UzJ=18+q2nW-LQk$iewhNTWT!}2tfXOhu#*1xSj;{rxYrR4*Xo~aOeOUg|%GK+;LJ;?V zPY=&&REHwtD=qv=Zl8Ns7AvAq?6X^5|hCu!7%? zY@S`RKExjIj?uDCO6$#uE+5QzCY#4>0UnbYPuKl;$p^mkTi;qb1#Tew%R+`2SWJZ* zL$2Ej6xM>9mbam#D;hE6=nNIJnJP3WC%!}q%%xjBzm#{+^EeG&{5&|ek#gF}+7ft)$ zL&=2pjg{NoD0RDq{afN4OfGv@qyI5g!ybF8^S(+T4&Qkg$kWtkWL00d6L;VpvVf5b zg++fW+_Y?8>>_AXjQDX2zR$RBr6RLr6F#)3BXJm8DYU1I`27_Hs#l+J(Vaqy#+~)_ zHBOo8qr7%MdJH^YDtP2GvI+aRvL_=qS$uJD07aFJ*{#6=vNX(!-OMbJP(R0>$R@2` z&z4vnaicKK%t;ClR4*SI!CVMelEsk6W(6r~uFN{6$Yq3MG~?_SXo?B36yCRc9P5Lcdy*6d@xuH;Z28sEsb zmD%v19sIj=UiMA3UMXyIw&MMvzuKLWD0{Qa>r8CkC>Hj;6NLdUe%u#c@flU6iK+CU zJ@zgc3-IE$$Nb8ZxbunQDh@O!wb zUt`fO09_6WTjk0d7u9#mWn7|J%Am&S#b|wr#v!4hXqG|*Npu4qVsdkmj3|wEcd^kb zU>ltd3la;eiqb6TT;dfA+H8OMh5!~inPJh>`z*2wH`}BVf_q3%dix4}7wkVWxE$|c*~LcUcy>6>+XnZz?(Uf?btX60urI837H{hCSu0c_xX}tpkBJA6 z{Tt>6lc$AR*-XLSC1^cY_{ll4va|b(FlT}ej1+Oxf;#3?B*ZSkRcoZbN&W+RzWBN9 z)&0l@{6#jKI6%oXkOP!P>r*u3IyFB|n0;eWpZ(TB7U1kk>yvMO=d2OaG`T9`JqV*rk26p|y(JxE6P(+rN zrO`^gzMK}35==sgjg)2jBmJzw4-`j!DUfN>czfB_SRLKftKnFM8Y!$QOch`FuibWg zs~+VH`$6B>z4=zUo&t7<;0R*t@Df!5r#s&ZR50dK> zNqT&J-s9@aJgz>6CY7Eg^mzQcVjHpD`#HMC5J9~Oaizv9iFET*L}RYQ;>E|<`kb9? zoG`S}@)hVUP_a+02#4jC*6b@9Z{RXhD-x?-mxdMV^?0@m$7U&z4Ihzc?~8y_gHrizDX1h?yCw9*hwuGcq$fQZ%%fwZ`CL zPO-y60y#siPJX?ZLvo1EW#V4Y#Yr5oi%g2-^s{zaUDor(*47g1#S-gHpY^G=+1g@l z<0grYZ6|eX>FXP|uVA~itz%<9c^uj??9JkW57V|!=$+oz`ote@Pft5+9qQQDtK)Ac z7pLtivED8?VjU_O_OdUnqoZ>`0iQ3Sz>Z;`6c_AHJCe4Ydvk=jgu>QFMHI-4jI`}m zKVAl>9k3>)6UZ)3d)=CpL1<_(X_E#L@)m=WNtuLlBrupjZklaP$|i7uWFM;RB2*oh zUZFu^42d+fL6Fj^beW4@6 z-?1y7O{r0V{_PUq?L3bVpX-E=681XbF9~Nm;jaj1I^ko4GYFg3#KZW>h8}>DJhZrq zW26mcgtM{Xjo7s?M{F@WVtxG`?Kt*qIW-`6svj^5wvg?x*?V%4zhg@V?j6uPS9@3spVlQk8%GIgjPO=1|ss9Kkaq*nnqd1P}&+h{-0I=`|zOxnf1n zG$S+f%}CLx0Ca>BiIrS-KuGHp-7sG)ZfJ5hV8(~YOg=E-%Garp9J1`>R(R8TK45L- zR`ycsO+U+EmdkX;+UDopl8$YI=*}trVf)Miw)=2Y*?77WI<&(a_GX~qL;Pi~?43>- zAv|1I4$Jx8j%`EDj?Vw!TH#XbZL{DAaizmv_NR3adxlx?TELoe za2a+jn2j8nhk)oBWJrpM_~bp?Ogq3Kb96}vj|<)jlLd+kNR~;U1#=dLA;O?X6j&8T z3zSU^d}b{!wIytFu_IyjQhuq<=lcU#gH#8fvIO!WtPUh^*c8(3e zNIp#Ocn{u_(SHlk{nRfp+5NXzlfDcTZVtVG#9>|w|Hp-Q8)k`Me?{FG|+SOGW)?zcR`ViG}T<(PDtP(x3J=w^2`| z;rPCeXd*Pzi#wHq=hG?!Dx19f?LRgv!$I&}k(OFs>(j`(pAzfd%bYCml)fhbd^$#% zUC*E+$Dg;0-9J`%cr%PZ;nTn7cfZyD{1znk8kc5rAbz|5&@Q>{;l&TlX!?Dy8f6Sz zu}uPECEP$jUHR;|vYhn?=9pX@(o6y<-RR@P;Dfs10cPQ=3kPx^|G+`Mj`uQ(`)}cj z_l5n52nPdmH! z?Mf@+{#i&{P41n(bp%;7ZC%Hj$>V#5T5&QON4P8C@&{HuV~v&{fIj2Nw>hcPYeL)5 zbm_(^&C7a^4Q5PeOCP8{&JZ0h(iB?g#7MP~ET0(R9TWqR#s;G}dfhXKSzq%}?s2Xr zI_i6948a8|xV>N>vU^Pbg=cW>`1wXlC$WSsDn>OhO8!=4-1l6uv4Ky7MQ1+4%^kXy zL1ZH0A^kQ|zhSy*PbY?|#!%5pV#i!mVjWP^t;8tlG)iogBH*7WCv(P(4PH@9rN)NW zbv0knc_N%j&!sqT+xhs2s&kOkdA+K$*!mREcCIR6sZ4Dqwe_a9BEI(X46st2+*mC% zMhw--+b;bEj8flM{THhGju0y_ehPRyR~5Bz!4YbN$JeoIAbQE)`*!RaRNTM4l+#W9 zUoYV4`3m;MHju36T{t$0 z_s8Pz@clyX1E zzO`4-o7foDL=jhJs@KKp6@KV@O1<|{wezlDe-(#Mt>5(0&9q*DH7!n31lfKT4LEf% zClg#$VX=J({)O8rE-M;kk>7fM-7sR&C^6k|KX6emu}8214dh&9-vsf?Ue9&M<>_q~ z>y%Kvu$1V@a+580Lpi*zQzvp*O6?AbCS0A+geQQo#jeYuE`IQfVTI|0ewy_BsP9pH)izbQ-3MZx#pT>SD$j#UDbVlB(M4An%}(R5QD*qqIOEPz>U^q*vVrI#@KVcFyPALcqa!)CyWbxAnaGjX&FHKmM8rZHq?M+1 z2J$wl(O9dBijfz=j+H?=l4)n$Cd(2+0pv7SAs@MHbMfG!W_+hlOEXsdkk(4`cHt2k zExXKqbTN5ZB`jVmmYliRS3Xo**)M$30{Q0NX2*@03&*?Ob-J@N0(i$k?k*nj1~R;%clxU3^8TS!xkIKy-j{I3!dXPoCN~y^mK7gjG_F-L5Fao`~oL zlF#n<2?MdbWVUF~IM*sLC>-K@g}?=S(I|CRjUR=#bfY|JeiVmKEDguQXS8e=8jnn> z<~FR^3f6f--5a@bK5cVxKW{S^)&S0tQ41&WJ8sc=>zI02KLh=SnRy$nS20|15YXC) z2D>>u%Tsuu@l%1Xh)irQ3q1$$GT|9HtoE(K_t#v;4@J;{rI0acqtb3cS+r!PqUav!*@2}U9~09; zqkS{6q>iu>L2ZDhJ7U>wlfR6ZUm`EsCVxes?K{WhcQWeWuF$I{pDChq03d5=6Z4Ea z6lUI6(b5KOqDdMJC0_#3Ng3?MI;ODBV&kxs_lI{K4&-%42aXEAcR2h-hH=L^P&8qX z*%@x#+B_~g{5v6EarkM44?10RGV(0D=nT&vhP7W;^>u9$kilzP<{nbj0fpP&&! zNHUJZ`62o%icYFOMH|IaSmNSL)lZ@AhXiDGQpRYxmoOWOzrO=}#@!1Ap>lI+aGBr2 zKXH$J7rPr6JQ$E0avHiaSE-$~J@zX)`l@xxZNvGPCu+F;wyHwDY#HKSzWw%kwj`l^ zsmk}2u%FdA0!V_3oCOzYBgP?lDbq$7J@2>M4-!u5vewsKe>ahc%lAHUd`}-Cf)N$- zW;@$0j*)XZlZ{i^N+y^pj8FaZrCi$)K2~JhDPNr7llQiKe}c>R#)ttIj((fIJRN35 zheb9Ph+5?PPiie9DGWQ44et8$3(<0 zoSa`_rdhd0Rs+ka#ax_HgnvqtjHlj3JY;tqmZ3Og|Au{oXJ!L|{Wu}_#K5Jx1)x=T zK6X+gK=XS6n4qD|4N`=l(~B&w)v4D#k?ZT^<~q5p&d91R0){es8m-A-UQQbf2IDTn z5+8S?^#xuTdl@}PIlu;@5Y8If5sWX`Uk1hfteu7Ynj&%r@(%dZj=@iwMm&-pS|F%d z#H`^%HJ(S9P4fw(NbH#Fv!?ew784(UxICVc!SztCCA;`EHE&I(s6X$8;3du4##WhpuE5jtPCS&XRPeo_xQD3?I*V|e|nQ`=$^AE2+CMt}huYCONvu<{^ znNjAN7w`Ds_oC5AYLU6-?Aj~NcaY^-%(L;B(=<3vt-!PQ(awWCNpH2ap!U< z3q$=SPymU-)*@`zflQLZQj3PCcs5Y**FU zNmZ^wQEzwDlQ)XBf>LM8F{VMUJp0Ch&`#W|9bSE`xxPr}Gl=r<{jX z#9eB5iCCW_Y{JM}owG|lAIv$Rp1;TugRPPGD85+o{8NrsJ=f>t%k%6aPxEE)*Uq%& zeE6$)c)lk5bwe|yg~dKLUvRFk>VA|GG!=&(vpX9)l9Sjt=*Ti&HRxP0MOZ^mz=4_z z#&~fc&MJc|&V(z@hAUQ=!5L@6og3`;@etCSS{Q8o0o0XWaJ)1o~j39wT&U>ZAd z<{Zb3#>oaLM!Om_1RT^jAPRaEh=Lyid>q7uQ!qsgJLvFn1ubtFQ2E8%Rr)XGwUQ#vAt8)6T*e7Ea|_N|~Yq5nDdGj3r{y3bne6YU626W@y|vUEWZI$?n3^@gvCWK8?`N9{ly<$Hq8FGI-wuj zPI_r;H|zNfIqM9v?qe4d_aG08a-2a5whr5fZ$+u~eyR0Y+w>d*Z#Dxj^5hVQtu%#^VxU+mK%vnx4UQ<11A})EfBxtgoV`)T>-zpf*LTJVuV?|ynu8ljimF<$n?wj z5Yhfv2}uch6UBBW=c#<_h*r`C1I_vAdJphA(QN^|*xH`N^YuEy+9TUw8TL0QTueVQ zx;6^^L_!{`0Jy#ctS{9HSnG+#pMyh=%_Z_!>{-~p-9k6x^rrRy@ZJ-t9*42nF#6z3 zxjYHuHpBmHsm1qEZF`4S;jfU-5>_L+`EntH?$G*v`x2$Cr_2rU&~ZM}9AA%W`hV5_ ztR@MbWPN7~{ZAtJmYg+2AlD-674KFm&nl<^aiz4L7Q&^iTRBdpzByRJiHOzh;_UmA zj*KlvYn4hyO}c@A?_lRRqxEW4`ZF`y#9gUeK#UcI^E>vAD#k+;#EVH+i|;qpc2Ihb zJ&&2A6oCLAoNRccU%)8d;_uks7t9zf^Q5|tJ$=pIeC!p2g|JSKKaE|Y8*;n?e43Aw z0do9{!%HwICXtY!SBNgVl-({ljW9UJ>MQQp3l3{PmtRs&QF^|j`XZ(zf$56;86t?f zM98}|lb;!0es09iFL(v^6zhPa3$x>=R^VrNklzXmhEb)a6EM38c)?s5y>{3O+cyq4cl%N_| zQQM`<2^KCSEkl|_&#Fp#Q>m5de|G-R$@Aqr%MHFU{SP+ojRyVEHIoU*DFc7onM)?BG>W++UM(atUjfno-ivae{ zv-z9H5mK=0Uz6ti1FSx0-m20^1fsuCT7`eDn@Wj=nQO}dR!P~NiW#X1p^S9_t3?%% zXFHjgGioU)A|hbjr4S`gLCOAQn9>mp_a^F*k9n<&K8P5H-4VJN_hbG7(rwG<(|LR*h zrT`Mh*v~K4ej|&E46an0$6~E_WY%dg`NeVnu1(svs_RYrRMjI5pW2U5w;lBeWAc6k z-|SJhWd?!ob6YH2z&hD4tPG>jA^U9y*30A)XIPxF6y2Yr!2Kut37|5upP+Eq^^P5^ zNXVbqwP3~3X9WN5ejqk7&K4yJBh2{DqI)SMA=V_>Cuo##bRvu#yYJylV}(*I!@KR!p6+hP-L2zjugxWF=%ru2?&pya>yQiSPn`rYna1NA^N#v943Kb#{Y_a| zXLL<-?Zp*4tS{JM4Gz)gKVCW(o!a}Q-Qf?@hJDhX9kR|e_m@TQY|;ms%cqEilHXxwJ~t>Z}V@Sc9Y!k3qxMv1iP?EZAd2wM7SKJ4TC+U^WMvHlGSg*=%iRYzb)*EqHTsT@5%S5pDTZ41#CvWcV z*4kh6($N4l*P7l37zg7rds`n)#f*H_4ws|X6ymyI+&zPWvL43&JRwMg&P;a-V)@Yn z`KJ9l$|V{6jvK$_d*yoYq#rXXpf&G-I32gaS?s=!lqtn=)f?;vA1j_PxR8cMeG9)^cU_AR`?^A;q#1vV5fZ- z;OPm6ed8d9M8&uH5Rtm7&@+6hcVO@`evM#(o;-xJmkl>N+q=8pI#z7O%$E-1rtJ&= zBh7c{?XH2E@9M1Lj3NC=OvfScE9r84MkyA=gB&R>$~o3AgxXY|tE41dASv2yVI zfNr}>3E}&$@%JYR9f#}>ZWJsnMmydt%i{ZQkpAdp@$V$dngw-L3+n4?D&#H^xz?`C z_lyviXurRutZG#5z}xekBKFq()*HSx9x?>1FYFILm&*2oH2Wgzoq0V2pE%0sIFN$y z+p)F@1F*N=#Qxteoq3{~vHQjW;=AW@U^EN@lCq8~d^r4yD-c?MPy0v6v@c7dnPT}y zw9*wGBZvFNil0eXP5Y0T_W8z&dsN~PzqM<_K$SLj7JIe!4?j{oY#|IkUDm5CoFNPX zNo!`sSdFY{h=W;I*}2FThaWc$6CygD6KT}9^ZD$I+f>*=#;ZE?Fz4!8Lhu1n;`kW&U7MvK!g%F>R8fW+~_+bU-Y}^FbC~B z&( zyv|7Op&6XBMFnn=b+X(&AqQdprs7{#BMeuTcE=TIz0IyvKrvI_IP2!iN~>oj=w0q- zii~URUVM^$Bh06>x1dlin{)8zrZ4F=YmJV!iT+-=qRLL7upPh^$xFz8CcHTP-| z!8zltOGBdkXIg(zR#0t@H7jmMUuVD~r5-^G8%gcT!=~fN+2%{TCigFXHd7AsLiYOF zs_2q5{6^$%o9$-B_8N74m5CrN*pauXW|Ju4`pTOOyY_lP(9%oz__t_8u+$IijG1sy zR$>BDGOCt8D^SO=rCGzPb`4d;^;e~TA`&9w)_RJVXJe!;7%;eMrm#oSr*Rc0C`Ax* za()?C$8jy5eF?R6PRN!#k;@gXKV}G$aosFwDfIeJ(MSWb68|p>(2&!J(eg9ip<~9v zdfxsS)x#7sSkb9dX}rc>L04VyfiRarJ)BJJ~dm2+jSvWiL= ztIf{z90ed2>x#=|A)oQ^o!mk(pMFJ7V*SXuXlK+IG6qPETESKZ&E5l&7zA9@_NIke zHwbyje0T7lu8ccI>rbUOdJK{-t&(HNnGP7pLot|FTyB4UowTZk(`_|{R-XH}Xyv(@ z=aOlqNP%hGy#r1X0}H}G3J!)3_eJb)KJ;$PB+8yersMP}H5$Q7WtzC-J;Ls-39p~b zl43drYOT%o^V1zmfcrg)P!$#In zO1ib>z1dxs2@On1dk(T=AkB(*Hn$9wLLR#xSdks>jOAY)qxjNw<{EE7et~z|q8f9Z zIemKBMFk@Y%u8BwGRSUTvRbue_TP?1sMx(y^XPO!cq|h&kC-Ikp-#w)Pf~rbzM{Ui z$y^t#sIIA-=Pi?(sg>1s6_?74pXT>YY}~h zjJ^dThga*dZ zh#>9R17(olBz0mHQT~;4J2>HL{X>0FlJ#i%T2ZFv!u-sNG7jz+WzWU1)(huuJCl)t z@2#U3!2W@~3p7*jH<5ZsiR=XHI~NY-6~5=3ck0?nG5act&Al>S1_YwSYR`O{Y;Hp!UD1G$r zd2)%lc$6IPa>oEmVEDXRl@_u?ukAq@Ov`)5)g_p4GwW;2Tdi5)7C zbWRZE9lox$W&3ns)ttTSr;c23^yu$7^@X13deP1Vcr81h_f6;4JgDPy2Z<-pg&7{J zz9nz8?4TvoFS*c;^NsWj8Om(jghFYr6d0pJzCX{g3X#NhaQ2@SD!AeYz7ZzPT=&+< zCtthc-EVLsqtq7V);fIiJH8la9{P|0>o_vV%-gnBrCBd324nx7j{0Vpk+FBs5Uz#O zY3B;+@>?-w?EY90xP2RaVo3r{g}z+Y{-3l$(Mc3_Nlorsj@<*cj+hsl#9ua}HTP{IRcG;jhX44SH96(tBO*Xt!E>)*8d0Ifq2e@>b}=&Nzt zejxfF0+u?G_&YCCKc;SX!j2>}j-9RN z!&{o$irK?iL0{Op$Yu@%2isex$So`OMjjo1&outr-hY!n{MGHooz&^^FGr&kc`%6= zxF=fnuw!~*xUL`Qo!il#v7s-4XZpw+HkfnPq!Y5a|*-Ey4C~ zK}bk$SK~uMtfI@lXQY4XL*ojeVDTBTbAZZWYlL~n3>cX^uOruRlyV_!?f2Nx!d^3W zVkHzg{7dF#Bt0jFmCx~LxlOp=S#&mK{FS~JrvZk#XM5U@X*V*Y`>0HZuVlfwnurZE z0bZZHt70(SOT}&>$^A_Fa}`ozzqtmmJ^5Ir{i3+Ziv(nXGl7Lfrk5(V+_INpUnl)% zCN9^7?NK_dRW6p1OT4_~VIDu%cg<6THue(A_^mw~gmcSYE_yFM?#Jv~n6NS<_?AqO z$Nrcl{5*u=^b2rs0XXof^B|fYIS=-XkBT_P5k6`JhZ#>^mDaI4qyP5s z(Nm0;7ifx@Uj4TV*^V=w9CMnSv+D?N;?zY)Z@=;Qc3;OAgGwv5a$I2GDQ3rq!#Z|z z5!R04w!mOH$kB1QFBt}MWTU9$nGWW5UzNM9c<>;}mlZxb$Y^b%+sfveb&HnJu&&p_uN%}^m4(ZQu?w} z-n?>~MTWhOTYn^!Z9hRsbd*PUa-~_U0EpaLJDJWi!B5+y8+ORC$ESV(yGhP z)%p*~UnjmmSmIHy!{gF|rWt8fXp8<*^PfH4W$dKuIBrHM^Kt`OhP{*}1c7WjBmvr6 zAkVP#2?AMf7x1m;4KhLP-8fEmmWWHUr|YMBnc(PKqIvX=^wX<`9`-vVJ>YzLT3Ig- z2J-M8IxhO-oaaEZy8o;Vf&L!VjZWuPZH7Y`Ql(=lQ68fYEvd zb@-zbxm>^GfrV?#$c+N28AU1O{*joX;n&Tl;77ZO4|AB@ToZi!{Z21wy(d$ZPJg8coT3$(bs=->>)Kril}SGsw<-- zPnWtyFK{Y$2M+g@&EyP3W~>@-Y$zVGj^F7+o|ZG#+g0$Xj@_9~aJ}NIR>`W^b*l1a zsskw+Zo%JiaAUHNV@q=d@b%#SX`h0i1PuqsfwH}{;y~;mGn;v|hDUcy?(K8H;lm>tRG9KVVh>S?{n#Y> zmvF90;vZ+j5JG3JRYMdV@*7HS=nu%TTEvLV1I=&}_cQdh7UgigjuV}zQuD)uzH9Ua z7_!xh0;*iZXG}9%U!zWT`P5whiwYmK-&hICqGLzXCYvJmckbd93dA~69~RgT+1Dnb zZctHs?3V9~cndc8(PLSVy%qeHs~_%E%*+1cz42;tDI;I%;j3l4gvoAc7Kxxxd9~0C zExmF?i7qVU_J`wDLHoZJ@s$kJKgXFaejn!^UH`O1{afz9!u%`8()?Fi@I8&XhrFPM zuJtG4TkSt96f9LJkjv?V3qgzhLX@_nV>2-13o34o#QRW58^~7O_G{mZ#|Ma)K7F<< z-lvgHpVAV2I?d_Ry9?!8IJ!&P4&^{CUtMybUPqp;HeoE=vYekE;V`ECJ^rf%6Te zFKhoScW*8(W#r@a%S8Cy>fW#d_?@DShKTYCFfzb))tfOg6bW1&L;zFLG0_7aY4Dom?D3#}|Im^`5>jrt1wl(IV|Cc^U5P z6YlP_h+U8&PtOErSQ$E+0tn zgSM>jMwV$EY0XFWg+8&LW`xm7f5b}tY6_!u4YbdIIMM3|nw@<{3kdv+$>OM>Jq9AX z?Jr1A!5@W(NXv|@R}?P$HKCi%K3{&MOUsx5Y_q(jszXHz|7>AX#SU^y6(g!!&CAD`=xQJr)NVY;F49Gi_6h~ zS0)Al1s^+a?k=Z7e9!xw>?h62?|Rbyh>j+K=kRX_z6Rj?YTt42RV%AN5Ac0ckAwqX zbppOAz}N6^!3V7P4)ZJiu-e&$Jy`{-kyXKt*Zi`spV^}Y<`K#Cui(|^iU4_XD#$JB z9E*nfCc)};g3{@1faz1Vm`U-BD&qYbFF!ZQM%i3>tt$iV;tEzIdt~gI;ZrVqWDRm4 zNN_D~?4sw{8G2}B0<-J$2vLdNkHH4;1Tn5Xp5Bd=U1(hS)c6=#m+*!=qLKAo@uLZ~St%kTPwJ*DVt#z*Mq#=XalkKQToVSIj`GCu#C=;twdej@!ahi3Y%!+^H|D{N2X z?Gw-LF)|RBfoVMuXg`FVLBP7Ay|+_#C+(GEV1j*xZ=5g<`aotgH`zl|A!0vNeJ_5o zoFt2k9dSH74msa~2dm%uMClj@i;UHqi!u&`ZeU+Fcr7sX;%_p}M1SYD6oOX^om`(E zu-@Pl1;IH&E#D~%SUY+EIkBN?-y^{Hcjl>vKWUl>{EIi)H(Zf|Q5SyjDe%{Q*fTz_ z1AYy>cvo%-`33Z1z;Z#~wbly}65#+3X94&g;I$)Tf%2p{fBa{7{u9|`931@OkSy@M zfGx`RA6w%n`wu?=k%NmqMTv(t--4Yz54~V|2GVfWdgE4jqjpN zK=!9OtY;q@4UGMio~z-TnV4{b$LdY?;3W7oEnW<4ilKG~&lK_-BH&=F*&NGeU|fFk zFZlI7`?wA|^X+WmEN9ByIaE3b7Y%qvz}jeESg5%687H7|Bw)g|S25-PZGOGpz5+=9 z*?cs1K7Cqg+#$hp@E9dqX4>dTYpL)?6S&S3gxh+!YMKI>DFvx2MJuo|Ev zMaNcRB*N@Il%ZArT8sJ8GY;S%p)JYy6kB`bUb?dwR>e2vn^r|;q|fTz6x)%I2W;Rk zn6lYt_9@Jl;pXBVP7?=)V4C8tkHVK0?KG`Evnivsl4NB|>r;%sOVb=OL+%6i|M~a- z9tP5sK?->}yy-^ofrsvmcuS^EEAci~RaDh1tg7^0=q<0U^)?0T8+oZ(SXCEn@>W*W zl19XU0iFS4$By+*nL2Iy)!wVCYRi{+%j)ZEz0<3jg5J`qx{#M-vCw%6MtG+M%Nv6_ zJ$F%4)98yXYLpTqYRk*(f}y&3HH{31Z(Q+ytz#^3qrN! z!76WMO_LMvz+s>z$%&{);fm3Lc!Bxcx^umA73_%A3?Rf4tTVh#p&KiKM>mRy_8TItR87mxN1uXNDs z(#PtkcS_Zwl!~0nk1HYVPpMDI*d&lN;wQPVYJf)%N-{uRjjKc^g;=S_U&nyfRHjts zG6c)8to|IvGGc}-9p2L#OtYE$6KILxW7X{sJE zVuUKQd-WY&uXp$A2Y0V-=6`RAo)YeS5tQ|qZ$g5K%Y(tH1r5QbcwXt~@%1L~s~vc+3RN{O=^4R%2cIB-P1sg&^Z%vbzzRc6}!R^}d@Re6q!rkVUhiZdR zD$FU-U*?HoZ4gAG@Q6h!_-O`l~7-eaidi zGGJ9nGsIijSl`fefwv|IHo$kh5=6!luS4c~K0DJ&)uS+1wYZ_auBuL`#yh9HVt)PH zx!&A@ChzV$zvsPJKSt`uDE%n-wtilc-{f6TzBo@$M}aG8s#I5%*D@@0P`t6V&{EAc zfS!wJah?zb6X243Z<9!t$|k2CXPg9?CDW#l?ir+dMfQ+3w zYDl2TV5rGkURNnJ-lP~=ylD}fY6{f^m(bZz-Tb=xMRgu6zdR1R2QHVz-}{KSlZ*k%#k>^Q|xm@!Nr=Y67gk97z*DxG3`nuqh?)+{1cQslIYr6=Kt>1E_-4u zVPQe3sqiwll@k*cP$xv^3R_)*#JX6Njrs;PG6Ou9jPUxH*LqGNf@Ja!@QfS*enl2J z397d`=~7)FSvU>wd^?^$HU2W%s;*z8XOz}(J-ZXMMxPe-XPAl(&8o4hqz zRt)e=RO%O%3n8lxIVe7{PrijnHDN9(QoRYqY&gW7l3yh132KTX)d#=;ANrYh!qh2K zN+wJ%DVEoty088zlRUeB_*-wWe_C>e)qnDqTz&P_tLeqP-WgM_oHF&=DV_o7zVPU& zQv=><(`C&xz;m?-07vR31LQ;vQ0d;{svtcPz!T&>T(Ur;Q>IRLVF5HDE|I66GNqPI z2sYN9KS9`Im5|B+cmDmbS#uOM;a&0oEfopEDX$f|xgI z0d?L5;Yatl(n`mt)>5??)wH&11X{DB#_6dw`zQA~D}+P} zI7?9@MEt6{T>UU!agtW3IioB!92!VzNB1|^%NKWY>zfuXT} ziHyU6hwh0e5rniAT*L8^41c(o6H*0S=*Zux{PpASXnuG1`xkY0ujcPH(r?1Y!7r{a z&fk>d-racjdBt(*Bb@gvp4U*vc6@!>`Fn!DGX5UsZ_IM{Qd0t$=@pHFFEYS{oj4Mbv=<(|G!&T=Hl+| zb8iJF-_?I^Sf1|R0@B=YPtW3{ygjA=%Q)%}4bLCB7#{5zjtlpt^E|_A`6GB4kD3wc ze@|Vgw$>AD3{`pNme)2_xhjo%cI$uQ?UD4p-+6yxjK|YXj-5W8x~oG!4=Sl~omuOY}W$pq%Pz6Sg93AHfN%cr{agP;A z%J`mY%D;59SA6B+Q@3Ev2)bQUt&=u++SDmtEEY<_CqqUW`dBTxJO&Eyf*OFsGv1?C zs@`fA!EQfcH=&9ki+~=|{KY*)qF*@G_K?_AGp`Ocw8z@w7L6XtiAK{ybg+D0QxDN_ zXi*Rqt_v<1?JccoQV6K47yAi?;wfeI*Lo|;Yb(THBt%fv*jV4F$LQk37*$j=a#eNn zs^TdV+!*9?Lk%mWc*@nvz=fDgAXNrqB-JGfDRRJMq(M9}t(HZIXNFe79hij1CkTzz z&uc7isAk|!AYBE6P(+;mD`oLCw?>R!nq2ivaj9cU`GP9!T~JMZh-CpP+K5F}wY3*& z<=>;~6a4w>njpTKiW<=m1!a{r^2!2uiK7rt*1J@m?%m(%s#_Up0TT`J2gK8Gj~!Mf{DDcX;ss`TPF{2l?PXmp?Cm+5Bbl z_y588>-&{>7*n`4?ALFZPtr!Lm_b=NVrUtf+^RHB~XM%jeY8V$tAH5CuFN z>rq0)oB}*NkSP4hdQP69@>)-MWqAX&RZ_aLvPN33tkmh1-=Q*ISyS^1hvj#nVq`qA z5_rn18tdmsYjY9jR6G~XPBn8I%LSHsZjl5}B>{4S`M=8->=xuLq8U$ubxMZtoF~xK&1+S|Doc+6K(brhFw*3~IQ!KVaIZ11N+7`VP;KAMk^DBQVQ*-xp_N8P1?15u z`H`v`=SfA43k2FmG)4KPjz$rQJdh&DeV%An^1#Z>BZ&Q1hOIGJqoS40=qYb%U=xZ* zlNg8PS*3neo~EYI0*W>Ts~6B}uv!*uJXs%O?!&k#k1A<07_13~DkaUKO!O~BNuf$1 ziqJeoAqvTA-$~3q3{5B)TEGZmxn%r#qU=@@y|7;BVo~{g;uto5s+#HrkVSJt;A7GJ zMdd<2i))%ZbIRu|;isaysuna5fPCkaS5n&?RHiu)kBkgY5+ozq?40ribL#7P)bXD@ z>KLUtAfLagTFKO?NRlV-yfV4?VF>u04|e9zOGar<70t>oEmqMLN>){r%Ut6r;LfS4 zn#&KwF5!7lxw5m$3+Fj2c|gDn4bS>T@=Mihb4Zj~Z0TK+UPSrBZ zyj7J;y3Bi2Vrk+3V(-nvqpGsL?L&f!1Y)oqP|=Qxii#Kp6%;jr0AUcKpp9e3N>Y$i zl{FB8s8JAyMvXJJw4H8IQ5@n-E3I*8MMaJC*lko=agOsuQ}4a@`Bg|l()~Q|_g>#$ z)&=`Md!2pO+2h)4?{lhB9S*xNMiW@f6_Ce}95avzVrUPutSAlBSxdt;r34H`f&@y! zVf2M)$RKjM@1xRsKGSbEfV;RE@o9=HIl%u zclDcynNGi55_K-of(2e#Nhw`7V5HcDs4O!Z90N{HGvoi)5Y#Ym3=smXmW5?>SwMCP zacT`=yMQ&IX$aA8Kty^Y!MM9F!e*bzqxPSsGn89U8MZJ&@c^ce&<^S41XUIULzX0F zLjsru#P_xTR8pmp9!(giWJPNSe!_&c4a3Emi85N2uA#i1@ zvH{1Jt?75B#(EJUvpyleghQs>j+cR_)qwtkT_~$cl-W!GL#8+pu=7lhd-fD~mDp{#o#Fhny z3i8N)cBzFfGu1)U6n2TM0qnuLg;)W?1ckxen9_t@ld#UiAa+$%op6m6Hp5mHHiJ;c zSI|TFA!T7KMi~#Y0tU-A4hsPtpVVa)P`XHpI zx|5-D<_e2f1exbyrSmE{upLVi*y_l%huB558;9oEI|UqIS_n+U>}e??rZ{T-!)z{r z-4HA8^tjSsXiS!H1!O+5E)`DLqzj@}Q5ZN^vbr#HU76V+3vFP73NjQeA)8nuC$J%4 z?^ba4Xh|(Mj+QJyC7sj~1#I>M0n-tnP0dQ#P>QnpvoJ>G+XHCohewVUxSU~uXeKr> zc#3GWF&#|=EqhU3yl{EJR@%MIO0kb)|JhR~U80m!Oy#y=QI81?Sax(zsOzu@y{_+w!Rk;n$ z@&Gd=i36D47+_Mj7z3JDM(lw0G|*oiX)%}FYKeq78&xK*V0u7c!vi%HwA=o)GVFr)xa)g#qVmyULG0y4)?GE0>4eVgTR@(rd~wDdh}%3)s@3c6h$-z$O_* z3N!iHRUr&Qxmlj_Fq>-zt6(>R2rC(dzzW8UZv7wD64+{Oj?wyZ7!Au?=QLzOn7feorah)g-@9Mc`*bs*CdW$F z_P3j}kntn*<3PxDe9lGaUW{w@bQyqzv>4urW*bcglbU?AJl=GQo9ja|< zLeyN>!2Cd2!ifXXGBX*0`BgaWrlu;0mkb$l7CM;|&;~T>d?v1PgAI6p3)R5%O{sY6 z!|8Hw<`H$vB7lDus6$;H#*mIuQG!h@1O7&2g;_?{#B>cp`XP>GH35?Yf%QmWHoF2Z zfd6GC2*s^~R@kbz0t;-FT7hrFe=3d8d|1F+Fs8*8brr0rm}Q9awwyI&1-VI>8L9}- zaqTkOc_6SOR<@SHs=NYY7i52w19J>2oC8w9L{@>7Jrwb%F&Fq0>OI!rh<-cEo93b0`%ZRSk}U} z@oPXS!`^HS!~hYxg=ht97^lEFQEp$Fb7USn=PCn3$2IP8hqW|nDF|y6s}VC=cG9we zH)*GBu|&vpN@(6<1#>?la|0?8L=z#VwFgp26-Um0f z=A*bab5a{t@66hz7FaIa>XXolz*7t-F{P|QZGvXvwOcX$+GX@I0+tPgCJp1{S{htT z3&~y7HbE*Ge5B;*7mDbbC{6H+iG{p21JG4h<5jT)j1yK@5Y#Xu7+fdA!j%(YrDn1y z{fTg%b=NAkM+g?!4g9yp49r%9^XdrcAyss?s(>3e?3=KZC9I*}fCxbpL6E8o0j2^L zK-C0fyUGS^6^7BOyeeGE)=L#*jrpEUInJ=MF2|lj8%b5R2U5jWfJvzQDjxn2P{#!J z$O_OJbP<0MT7}ERjc~&W%!{dFfl_7tt}20#XQ4R~z^-Md%N}7t+mHifj}^B|U~4%d zCW+Y=t5;Qr*)8{i%;UUt#6Fr$DLiGWRUsP*K^nk3 zQfMZCo@kQ~ur3AMjvY+cq|O4R$^tj@K&uMiJGfZFz~ftq$KSY_Q)2y`nEhvG zV-AZ0o6KOyLSCjMKq!IIsm+@XqfBG zWvXZ2GwjW^0Z0%bV6I}k&9!y%T$-K#rjF;al{l-AQ8$-5pf@+f z#4=tadCZuVNFL zb45t+wJYb95MXc!VrJuU%UxO=Z&v>97J-rqJ7(ArV&u%pG}~Goz@E}!?Z3?=)q$XM z((pNH93K6eC{&440b&GUmO&>|CvCOCS#ENgD9Tb-D1eZ0C34=U!>ut#B2O$|3?oN@<3zGeZ)89_C{ z9Ga@enx_Wy$vrS5);zXiv@Q$T-Xe6KDKyu$ro?swYOt+77|29y_ZIkfjM^HWSd{gh zC1rU?V0m)IwlT;lQ$_6)MDb*RRSB;g@>P!-$W&TG6VtH(%2{?;vqE&U{NNb_WeSv= z9`+GR2&-*{04#yM9|Evqv?fdtMDY&^=|_a_G!ug!2t)G^39GQhHQ0A69wWm|1NfSh z0mJ9CVe+^&CdTEIB`5g~vI}GvFe$nVodvfwx827Ul2*%B&ft8^GNJ3FH9YsR7BLjI4jKyE8iv&=J<}MrW~ITbw*$+p z%}+d%avQ$TMHo7jCiE4V4G1Nu56iGW@Ir1gEX>0IT&+3+H_dR%AU&Sp&E}D#%XGNZ z)qJ>=cgV5t?6EV4GXv4BZTG+ia+p=A$M&K9x2U~~fr1LNx#77u4fqZeKU`hM9&VXO zdE%aJ5fWIJ46`_8ume)s>raIAPdgKF6L8qQ$mG#m%%bp=)UJ=(-fuZ%+r(Boc=DDd z^StdWTP?OS2}f;l?%}DrB`;51-Fyr!qwY%<1~+GhZ83y%Lh@RBY!sefhw=5ou6KCh z1@_=0!rVY3M9els@Wd$us3E}WSV(OXQc6PC10uMUQDST}T3WX|2ja~Ytu2(ZZ`VqTqv48lm2TjWQo>Ucs%MO`DX9p-8w$`b|Bm^q-hw&bvW!lp~YX$squM4~KM+-WzEiDNe1 zW#I}tOUpXdwj{Dla?+Zeg$osgYwPmk-jd@B7CisQd{9?ZS%M`)1n11GV8qSSkpvCP zafIFYNW#XT)dIV7c7p_u_Wh^}nV%ww1q-ZZ>&PE7w{0I;O2`wR8Y54xqY$6e+5+28 zJKGFk!2$v+2n#kF^3**~1VWHKY72v5Lb8Jy#dL6s2!T20EakWx-{rDv-6*t&igx7! zER{LxrY2x6A0ewV60?&{k%4`M)M&jG*xL-iJ&C2Yt=?&DXXK%I@4#lIC{KZ%TGoqX zHc;uhTQuO>#NM->kI?Vc(AJT>(ruF(@ORHSu#FT8& z2SJw)w;d9#VveN9!BYEg&l1_srG?GjlJg*Ap6y&SGIR->Vyz>)&`M-ZB!T5A%yVH2 zZ8oM`o6|+Nb$bI$)^nNP*($NXt9TVwB5g`&Hk*t?Z3TJ5KY*` z8sldCH**c#qAym0yBo7E6T^1fY2Ggh8T>GAhjx#cP5%T|5DcoNxE-f;}BV zTlx6knl-R!X7k_vGxQABkpUOjJ~sK}bzQ2`mV!7QeCRWbO;h3!08Xky#0Beav@gxibf!0NjS6Kc{ZvqG#2 zN6@OjiZ;TUn+;>mLP?Mn6rnwlW+TtcFfh5<3_^E5oMM|B_@=gNasO%tAQI=aGF2qZ z9>;KkV`h?Lb6wOeM~ToO=Gv@B$Tf5A!A)$gnNXI|G#Lv>0$aZly1^ZDQxqZHm(b;o z4KR+w=EeXt*hWjt?Q8Njw5cSQB(Je`G@(88jj>HgVM6Ai6LJGqw$!h!X=7oFvKulR}cHY*sF`Q-VFnAa)G&4xV%7!Ol z0i78zi4fYxt}|%XZ<*sQfy)(>H;49O4WYe90$h_aX|cR;eUd51UM;cJhI-jZe5y-tzHxCtypOLxzKGv#xSD%$7dq6m&IZUa~TM2T?K5ef>9oF zI9l~E?ei?y9bloYj_jecCAXF~9aNV!U#+Y{tjhc zC=*hQ*`Am4tkiB+WjSU(5;5DVC1mnL5oVOP^w}J65o`#0-78YoA#rwr|H2j>(;h4V zXOXBMhBKR8ENAS?cJ4kl@vtTj*~@$|?$)SGijG3^0?skTQc4s;SCp_uhg4k#(>4{m4Pn|(RQs?fY6LNg$QJSwo2ovGyMgS(8L zL&UBPvv4uEXVmt!5lfb!BNNuxTTjq(8a1mGw|6Vzc%C-F@gS(g0$a}E6xsd-a23s# zCT5Wr^+GtZ@mjM~gj`bVN?l8>)LDnCqt?h{qLTa3(71d&l|Zdo89?P2ZJ&bBRvC~g zO|U_XqX+E4MuLrDbG7lvoT~}#HB%6`fU6jHiI96Jmf)2<^SBc1>S7ra5w{JNh_E)G zvJ+feq>ePg~H!<02$6d|0kA&w!R>0&sr%yb>0XaStT0iSyX<4G`KaL0CAKoi(T zk`>Kb0$PNp$kl+MX!i=bTAXJ;*I?P>iy*c&0qKyWW(-vTgLLjfx{aAUVNP|C5tK*Lz_ z9$Ptadk>UO=^jJyE-kmCerw$W1wuPC|B%o$nW-YM%$UDLfQ{zfW_Aed*0v?gFC(DT zCNR3TZDRtHV)zJba|F0d+X8}~Z+q{+9h(mSDQ|6<-L+bC>j|BitF?zk1Sk$i?H#Z6eV*l6PiJgh*>`gUxSVV!OI)Y*Jd$A}_lb>W2lw^PphSis}&5^sS$ z=vsh%cOQL!FNIAH-to?dcNR1r@yJW3Ep0h8Pw(-k-s1PXz3v$D`m%#B8uwh_%e^nl zKkW2_k2vPD7k+8JZ_V2mo^#{d_kBG2zJhN~e(Z!XyR>X||5pRPI`O(0yWF|r+@mia zcuvh*ubwt&)ws0u8z zt4n|X255SoGEf zKh0b9Zp9bJ9edQWtP%GfRP*HUl}GRS%d)lmr8lk5{PN+a&OY&x$1YuYVL0 zk9qf=tN!?#{-bC9v+T~_&x-X8th~E+>_dI$%=_?;&nFFg`muA4IONl@Q!AC%S3cxL&@H>|$UDfvI9p{$2Y-9Oy$ z)58bOjDGO-{L`OYUb62e&mXnlGuu4YyysJ^m%O;gr>)PucII23%zrWT#o05?{O-Z< z&e2;d+qS-G+1kJS{minycl7`1;oi%R9d}Ma?e=x z%!oA)KfPn$hp!(yt$)_?Cn|RzfB(3no_+Y0zfU{htiZ ziS-fdAJ#XlUs#{8{$PE<`hoQUYkzBdYjo{Yd32%YcFdnYbR?XYaeSHYZq%1YY%G+YX@rstN*-loK!G*%G7DcOrKGB z>~S+^9e={_W}kRcNog5x4OUhK=gh6H356r4^MXlYUhVw41v$efg73tv~xl{^9$S_wReWKV=@CjlH!6Qy|{I@A&rb z*dLy)^ZonI43r)8yFlqom*$|U0s9T3SXc20{zP_o_VAJY`}X&LDkb&Tq*8xh3I`Wg zH@lGC4)<4~l&s_Ll(pX{JD(k^%Is0s`rP08gJ=Py-x=qucs@2Np=TfWap_ldx1u)ZJPdxNd;He>%}@>|%LnM@AN z@Vu-6d_N8r!&i(0`7R=V0Hb-AWU?GK?aJ>Kz!um7vv=dWdB#D>WWWBTgJWUwUi^ju zY=o;}(_roc+hBGk`PwI$90jvr0nCP{z#JGc`Mz8an_x3+g|EQu{rCDWYYd3TRj{E8{sI}3=3f^tcKo!$>d^~4VS~L zp?rrBw!jvXACye4hsAIsY=WZ(P);}v<__a}SPz%O7WfLx;x{bXU<3}?p8MpG9u~sI zuo*VNY<~A*11yHUe?vZDHf)7sVc`hAp9q^^BW#1KVeUxu!+O|f2kr}VVg0CNaw*I? zgzr$oRycS^&uci8dWWrtQBSZ9HpAjEeN z6c)n*7=gt`ev-HWw!*a*=ZCr18^@z}7xKwZXcxl z9zSm0SVBF)R#*-rrF^#(Hp7)LtBm`>Z1@h$fo-r5_TGbdIpu}96^v)tT1ET7>>%x9 za+vj7$^~b`+&R=EEQV`f1h&BXxzr0R43Y0_&WGvu#?wg$n_-K^qm+A3u8X4&7V~rG z%U~AYiEV}T3%GtScqZSYh2B~GP793Gqu=7^&~Nu9AB(6rn6-p{YH`>CTVcP!Tz@|0 zf(`H#Sa>1z3nLd{XH5Qk#wUMrAhI->jKkbZ$R{kmlzQEl>){~S2*<*P2J9egg3DkV zyw}cOjy{XS!TV88ep7!bY`lto4_mLsPQc=2wU!&hML&9o!*R?^M~5{H9e1m?i3 zTeu%=hVx<5t&A&JxQcwkR`?EVyp8+8+}mllp~ztl%)Wzu37cUREWQ(a1MP!3aGzca zj`MoW&+4^Xzis+7^z!9&U9auSO-ZVZzpb_nmd^8N4sR6y*S@tW*{~G{nOPGv2Ts{8 zqqa}Icl54@A24#TwY<}N3e0KUl*~1OK6bx2|7Rnwx9jyW<^tn$qVI%(+ zBAXAriJ4hT(;3CojXBhWH8ozd@R1X?~hZ)5c{Eyd-^GX7a6g&XTS3Ge3G!vngr$@$Z?J zIdDmOUS{^9-uaoiY4N_9+2b<@=B4srWh&sB#a#0byQUyBEA8pbK4Up7Mn3J^P043W z?(#p?bWP99PD}L79GLHPOw5?o;W$5Y;CLstvNdx3J6yjVwCgXivR!OtTiToaFR`*M z+B)rozL`VvJCr3qBkjt}A>?>Ms&rgl%>Op@EdOp(@_nm&^j&QFmRi}Cn7&0@o6$iwA;VjU+F7*25PX(B{$qRO`R!5P zEA2L#BY%tLn2?bc=0w33Ckiss?(en%=?-2w_kV@^uEkfn>3?$nNZMQ7Dw~p#zS#Q7 zj4kd@DQQ#wk4|H83EkeIAj9eZ3>~e#_^UCdoKL<5y*+PeS~B^w z9ix9~+UCBVRzt7!dwG7w6#sZaW}kwL{PyFCmUpuU1?X9io_o5}V?8~kr`jE&#`A1U z*K=KUI`g5mRd?lcV|S9@R|?bfx*xiEbazTVev7uEuN>RmSobjJ-bU_Syj3ze)$%;4 zz3h`Rv%{&8ng8TE>@25;FkTju_TO6*A)g(`O}>qrNj6F{Y?Lq#+eb-$MtWw~ku%Ne zY&8EDqBEx-zJ`r$rxR1Eu{hauPDE$g+Ab<5Wy~V^YObBtpI=Pp*qhp(AMV{gj&stg zyNua_jEP+&*olJ7K94`S?m5($4bGx`pP?5w(tQRK4o3DPvT-JHHmt_1KsLGc?H6LZ zb{grjGn2`0EFGVr{4YkHlE% zsmK1H{$8B+FIs&|(@~I--p9t;q;C2HYAvrna-Vy5NG6Zu*gn=C{kCCzAlpiI<6`ET zRC}n6Bk8AhZQ^km)|U#n_THV6$sW*%Mu4%aJuBW69H=t_j&1WY&l5lf(ZfkgZ1ck_lYFefG%gYXo%?+G8(9ZEO*$`yCSr@wUNj4T)4zg5UEL|b8 zp~zBswz;t!*$`yrD%;#RgTZfU7wY;`P0q(;4agRD(YXTI{0=(vNw*qV9N7Mrf@Pocts$ zw=T2Klnm<7pP0unU`$)@CFx7)E0*s9^sGS7BGbdiWTzm@-WA{0NqnCug6tGzEH_+T zOr|cZJuX0Ao{~?naWc(Jq&v5Qb5-4(v$}2OTy^Rkb!+-e{s!`R7rEuB4f#UkA8>4+ zLHzIC7k`X3{rx5g;~UnBD6{}=k+;JSOe(btCjo&Tji zYo8%>@^88BaE?9NXHi<*wU3oKpK}9u$49qwUCJD2FZ0w+WzHt)Laxi@x}|m<{VA=G zF<6jsBH^TrshNFDcOz+TBhCM&K8JAK8(jAU*VUMAXA|hXOVX!hW}oE`4_aX|Y3v@o z`*~iUJ-W|-MSK3IbjrWg$ylz-;kwaw4_7BqS0{FEHs@yba4ycd`Q4ned^d1zIp_W- z`L;c&R?>D??>*&v2k!AL*Y)}BmVMXuvT~45BTd(K{7-#1pX&;`(RT{+$p2EGjj=1a z?gFm6Q~Bt@=Re1v%iGs4`5DtXF9J+gE4n`Wf23O_U3FRCdjeep_hgN$HBv|4Olz8)^ub-{?FkuX+dTFKhwjyRF5Usz5M&Y4 z$H&syKI7uOHHS%NdyWlVWVZjfyo; z6j>Isr0ThcepyAE;rF!nOSi7J``F%U%Rb2@CfI#UR!^|5gRB_YmB`j2d)ZPkCvVZ7 zlURfo`#l4z=1(bZRWf9JC*QlK^OALf{9GFsKXQ-!eUr(v>>g;i#OA4s(u@RHCe=>Q#U1w=dbNap6L`QROG3UOr zbNIXJ3$Fe)?@QQj$@IR?3&#U!ueNa+X>+#_y4HE#`tX(L9&$i3d86sZYo&ZvGPmxw zIpSWsTA+urOM8Ap4efZ$6gad}M2pon!(x52mrs^7CtRNjc~H@a*8k|2S^ubs07+ z&0g{I)n0GZfUS}4Mc=@KlF1kU`xx8b>Lg-SzMEJ-XWeJhyK1c&@SL&}8x!bouKD z{QpJi6Y<8*W})yn>xd`K;LhUoP}1femQ21z+{V#=C_}2=Cui2@rN3qQ-*Ugv?VVVk zT8!ScN3&PUv3;!Wmmyn^?11*V#|mw+r>VLxO#8Xp8p1KP{!^HmPAv0Y^O$VMZx{Msj%|Fez`8Jz0q7Wi}PkLbD*T~vvicc;rg z%3@)@9C>QawQ>$dwhURijYU3|m(j?soSIBN)6s~u+RV*o zQ*5jLVRF*7vD(McC>*^ZC-BVlKk9M)c~WLmT6(hkI(L4t z{1W<6xA~$wd+W>rJ(*{g0ADhfg_!dtt)Fb*Tsi0dM|p1Mk7#$_Vcnc%eRebkbn&U$ zyI@RrGv^kkv1snp3~V@9UgBK)2G<_lO?fvzuT%Zir=`E#ef_!iu=;xfeQS%7$!Ddn zdta39pO$`{)gK0-<3MtLrP=O&yJKHUlgYg}_KwNSGMiv!9gMsR`5#T*eOVcw^C>K* zsNL}7xv^c$wd=TcxvuRvw#mm5p0{zW`F*tGgy-Ly_J0-^aUq zlDG6f)ScNekM{H@A{~~K55@{Ysd23Gl^;FiUfE^@+zoLP{U znadNUZq1{YO%_+6cXS2MxGlfVzqWbvA)W!_=(AX|KCqTF-;(Az-MeEwZ(fh!-lV0U zZDYGjA8__B7d`g=#KJ0`zyC))`I$|<(!TYFV#jvN&#-Yg3mvnA$s|ps{F>L|uN5Mk zJEhY(TiRgDNs&vM2A%(i;|_kq=5;BP$fB*yl-q=0rl8~f^D?X-zk-fFb2jfW7oywp z^%?Rk?tH+qjS1!>$+4yywyYWAk+ufHgkTbsPeTSf98af*1%AaBbd66xwSdbpe zerCI4M!ItT&nN8@q+MtC`=9#KExDo0H*#6JEq6v{OK#dfdgweksBYyx zLu)!d8<}kTpp$L)9ut{%QI}^Uc8$IB@&?!BsxCI~VK3@!+X9bs4XXrl%_b^V+{#nH zHS0skWSw2ZnT|F{{%O;$fVP12Tpl1GiwshZKmP?4kX9+zQ~j7 z?B3sU-3G3^+seW?Sduor|JDVUreD(g;;oi$U9f1I^pakEc@M@Gn0D{MY~tA8<wB zeM~kQ*_FsxTDi|y!fD7Fk!^2vKiT>~LHoNJJkL$Nt8uqKQM5a9ZXIj+TFUkIPSr}& z*kztcV=`Bdb91nzUqgED4BkBgTcnS-r*B^;e@6NU>2K~PJ%+@dVdtc=iZ_$eK8 z7t2Pr7};oKmvij*=}Fl4slI*Z-33dtk~H^{=B5s5csSmk$kMDMP3~FA1ozQ4^V=VM2c|ZQB;!las ziLZ!ni|fTt#jnI4#a>VQ`nDCb#DU`O;=bZAamQ!<>kd(TtT;}bA|5OLPCQvG73YYj zi?!mJ;(6jy@k;SJ@h{>n;@?z1cPjqHD}FxjQ+!p6AHPQNhs4Llr^OecUvIB~Lg!ppwiV-^3M zc&b<~&Jknc0`Xk&Lh&;3TJgFUef@t{{ATe^@qTfQ_=K3IdU;0i7sc1acf|MJ@b$m1 z_y+L{@f-1HF-`q%TQR)ezy8D*d}c|$iiX+6s#awZsc#JqxJSipr#ILtf#Vf^XF(xh$ z&k-*WFBPv6uND6y-YniB-Yfo9d{lf&d`^5td{aDL`TVEiABdlb`+Ve=<4eWA6E})! zvXk42+lf1gyNmmX2Z@J>W5ir>f;d$?PMj^CDwc|sVn|Gg3&ncz0`U^@8u5B@p2p#g zir+5YEj}ndDy|h@5MLMnDSjw^CVnmc^15H2zbM{Ie#Exog&+IpvlQP^+)dn593mbh zjuH{F8XIc&GS)*etFUUliXI-xog;KNG(Ze-t-~=`Z>Ht&f-`?kElt_Yw~f zhl``d7WorLD?U-2Ce9R36i*Y&#W~{XVy$?lxJbN6Y!I&!|0v!d-Xb=M2g`51Pw_S4 zW8yPni}SD zjoTZvF0GWjMvRFI#l_-M@hb6pafNt`*d#t6J|aFTJ}?Q94?L)j}|A2$B47Ulf)9SQjCc6#k0f@<-aag{35YI{KvojezZ*S z>%|+zRpLG3gW_Z2)8b3w>*7De_2MVu*WyoNn&yFR#R1|#FE5E+}sQ8WItzwgSzj#`+pZ+1mo5iQZ=f#)AH^f%) zU*hNDSK<%iCUNUG{rmJ2cNBLQ_Z5F9e`uKEBgN6;(c%Pgx;RTbNjyy~7pujnSSOw( zE)p*i8^otIA6}*Sa`6W7Zsm8S;&+JmiOupiA5{D?@k#Mn@kQ}<@g4C4afA4!_^tS} z=)L9F@77{}@i*cw;_l*J;t+ADxc*yT&v3;@i${vvX6`~~qf@t@+S8kZj^ zzV(NG{e7Z%n>ax0@M~muew6&*;{EE+z2(njhy%o(#cXju@gQ+jN-jTRjN(U$6T~Uv z4Dr>^{rt{S{6w)ttP~IV&QBLoJSLtYo-3X&UMyZNUL!6SZxC-0m#F{Ut@vv3Z{p+P zQ{p=DCGk!1UGXFF3-KHAXVH^izLnTtY}7hp2gP?0_Yn6Jhl*3BZ=~W!h~ve{;<4h1 zVzF2$hQxW|S>ht`_u}Q^b>g4JTgAJ?2gOIlr^OcWb@5&CBk>FIJF!Leu~G5W@=LaQ z*Y6Mg#T~@m#J$7=#1Y~cahy0woGuJE{QI7+_&jl;xJbN6yhOZ0yiWYH zc(ZuBc$av;_>g#z=GVs+e_DJ&d_{a)d|#~Axc*4-Ht{?0XK~bHe!0>#ezy@b#B+6i zd&PGZe=F`S9w_FBhlyjwJaLkEjJWCx|Nh4*K3hCZ42W~YuoxH56c>vZi4Ee_;&O3? z_&3?bTNJ-TykA@+J}RyipA%me-xS{yKNJs9zx_nlA*_(=7;a>eiZmw$e);!&|yTqrIU zle*7EiZ_U-KknqDE_7F@+!se5+4vB5uX&-i7$z7iml=X@iXyj@h5SU z__X%-()Ap9TQO6-^9MiwJ1Ra%94sCnju6L)M~f51Y2r-rB(X%CBZkGeI7an%hT@CG z3&jTU8u3r!3UQU#B(4_!CO#>y6JHYF6kAfyr4;{{___GC*qqvLP<)fvTm5WXae%n9 zxQDopI7}QV9wEM|eB>!US)3uBAf6@$#Qxe>s#ZKM&KJ)TmxvdOSBQTQuNQ9=Zx`-ab*hP5eo`eU0D$l8SGo{inX-0C6Yrx8lCyLE@p}STRp5 z5NC+L6HgIK#Y!d6n z>*71&5Y^Lrihm@2E`BF&6w_trwiPqQoy6V5y~P8>>9XfJijNkL7I)OX;snJfi_^v9 z#Z$y`v099YXNc#B=Zlw$SBlHT>%|+zn4Y_@Qv6?9M>HvZzxc5DxOk?nTdVl<;;Z84 z8jo)&-YRYozZAb0|1G9#-ExKWXDGgdxU0CQcz`%uT(9;Wqj;V;Nt`a8Af7C~sB(|d zI;dFk3b96vi=~>+7bt#?_^rylMDdHo%f)5l_2LTgHt}xpuVSTj6be+QG8GF3zchs#fOWd#iPZE;&kzNF<VBdxcIF2qWG5hp7^o&rTBxG6u0@Y5b;`ic% zYR5@>4z)@0-Wr#E#b;$V7pZ=?lYB>USFv)FpYI=Jce5qmSG-O8+6O8=LcB}kVYK3# zp7!;;seP)WB%dHo6=#YkiKSvtjEM8av&HkpOT??h<>C$ED)DY{wb(2kqW!L?6n|cP zU0fwU>Ys}LOMFQ7@>9jX7Jm{w*^fTrcH++B9^!uDF!3-kSDYkH7f%pR6$4_m7!wzW z=ZNQttJVH_TDLu{`1k4`OO-BN&(|(j{4}-uGR6NWW+~kY#aD@Ui4TZt#K*+7;tS$y z;(qGC|5W@S>HnAFpNLEw2E~XtU#u6; z7cUmC5dR=HiYvuC#CycQijRtG#plIW#5cuO@k8-b@hkE8$Nh4DuXs}2O8u~(xV^Zm zxQDo}xV!e>4pe-&I8pnahbexPI9{AA7K*dQH~;GAt4Q&3agKPpSSOw-o-1A;UMgN8 zUMpTNt`Kh(?-cJ99~2)G*NV@JuZnMp?};CZpNb8S`sMjb@gKy0i|Jqb=lhCT;!fgj z;-2EZ;(_7_ag2DBI9@Cer;8_ur-%V@t{4;Ni)V_9#0$iW#Vf=d*|lYgUoWl@Zx!zr zSBnpePm1frm&7;3cg25+pNU_KKZu*e-fgN^aeHx~xQDp6xWAYq9wr_kjuWSdGsTm{ zQn5-5iF34nkWl;#@m|@@a}-}9E)}!B_Va(a;@61Riz~!i#U}B7@nP`^@nk(`c}DRT z@lCN+{7C#l{6S2LTj@QF{^D=M-Ne1b{l($pq2iHZzBom^OZyJTDSo1Os#qq@5hG%) zc#rnw&Q|<<@nZ36@lWDS;vM4s;=|$-;?v>_;;Z7@;(OwU;%DMF;!mQd_Ut2Oidphw zcU1g&^_NoF&q0#!Ee;V65=V$*#G}M~ajIA-o*z;*72+SnMsauD??%OM74H^Ti;swZ7oQbh7T*%z75^oEB7P-)Fa9DX#jW%lte?2O zI8e+M_Z5eUBg7-babkfuLwrQzWwzo);@>5&RJ>mOzDDtwxFB_2ygMS z#1pkXJzVizu|S+ImdTFJQv5`5YmK`S#Vf=baklawSNsg|T=7EjQt?Xh590OW4dN=X zN&KtWEUp!w7oSrpT5T}Y4s2(qppFLmge~8vK$12@yac8kutP;cGJaM6Tu6Ut%sd$C>2eDCHDc&yL zBR(WPCO$2`D84SfBYq%$Dz=F~h)Hql?^VCzPU0S7Nd0KA;zPwz;t}F_ak4mFoF$$t zmWY*NjkxAnKOZs0&k)ak#h0I}_=Vyn;+5jH;`QPU;;rJH;xlUR2NZuqd_sI$d_jCw zT&w)OrTBYdi}YVA*txy}=kKO?q? zuZeGq?};CaUy9#}zlh$Ce!Xuc_7k(joy0-nUSdM~OZzGAYw^6-d%JB7FBSi|OZ>Yo z@!nhc>HGQMhfe(i{@joIEWX3nw2R^mQ_|d#{Y12V?DuHx!%t$n&oZ4Kqe?qtQa&#m9jGp^!(D~GFGUp1NSNg0={CLa7KHJ2UmPzBs zAD%tr_|ilup2!|PeAuXAIR_0-xajb+MvNGiGirZ{d%B}9H+{XmuaaF;nZ4}A8T(tr z_Q`gk=b1U|EET~qZl$H{l%?{z3Yy5KTs_f7r&j>O&{UHTop)clx|ui>D(@;-sw^hCDt z?^vb_UXZ+1a`*R|k-Z~%TVFr@$x8o?snWMi@DsYf z5r(cz#eS!PiL!>WJ`eOOP_0m(J^o5mv`Xiin&r3+&AbHAfy;OQyfAQ1jDgAOM-`Q(S z*@0aD#46<7mFw@)pR&8|Z#Qts3zDboa7zBRX=<$r%Jd1_u5qx3&W zo|-pq^owDcbnTLwSKQyQ;+kzGFV=jcZ3S-+$y4*mOVWQpN{{9#bw}?|$qTRYZ&;`M z+TU@vesY2ONy@GLo#e%mXG?#X^rYswnB?J<{%d^2+UD}kl%D!7{qQm;-_>hWf42F< zJ~ue|_FlH$U&!;t-rY)H+$H@J$h&Lb*IfGDyoN62dPjQJN>8f1cK`15eBjdW;Eg&^ z9ai}{XWP*;Na= z9_%6gt111Xef_C*>-&;7X`noy{PbcWx;=I*a<-q|{cR!6?ds%8)B(ekzTsd${b-$= z(nIdPZOyf2+xi8>%{8^7MN^}B?rJ~P0{J0#TM2;^Dhvqkw#r5Mvg z`f1XibEKaUbvy55RH^c1V#E|s1yaokg7 zOy%A9cn^Bsl%5>*w|ZUlspPF^`T0!g--CUKZ0g7BQa|7Kpnn?-&H&3%ldmUL4?7{Z z{@kPr+gbM=B6;q!@{-H)(!%n@(K!F7mxPT%S7pxd;9IS-@Dm zD$OokD>ZR86 z5_=6j=($;X3UBlEjMN3sN?t$Dm%G1<$GJBo_pbNl?r#Jk|5)B*wt-PPyP z9{T42Em;T&?eEo+j{dtl%sl8JD>e?Rk z+=txmo7LsMk4sPe0lxnGrT<;Y3(xcA%O(F>@|-Sy!meywcUNx*IeC`XIKOw;ho{ZHwFQ0oGwMJ6*^lq8KC_*idE^{Fz55%9=vu#1_vyzd zeU|*0lwUNf2mQg6e%lb>GsuT`4sxn`i_aBGpJN*Wd{!#Otv%?!-HkgX>VP#pq;HY_ z#=U+0FX@`~J*3~*gM2qeLcrW|KUC8*$aQk&DYxZ+gIslNl(@)Ur)-O%Z|Slw_*(MZE_P;43+3kiXW0e1r67-_p5VG8jbG&m*d5hPnIf>Es=5 zsKXIT-_~V)H(ByRt?yELu5|OlmU>Q9`WDSo_bADNlw1o$_jj2&cX3MpwSNBH-+M%U zz2wF6lT-82eUdlGzq(xdUzNO7e#lbEH%OkXa;5z3pCm7o-MCok2jTcxy)|w01-AaT z&q0#ct3EMD?lVU6EcKH`lFyR7t;=|vD|y3#etA>*Stxn4=HD9Wxzx!O>43i|ePNe% z`klz>5?g#8Q~H(~|Gpc2crQqvtNgV4Ka#h~K0K%Ny<|TNyZ9S}klQ-F>pFCQrEip- zlpE*eOJ3Zie-=7DyLrpBZ^@k*byr=O9nG+%@zZ|l-e&X+t#{cV{PUFYN}t($pA z5AsKQkiRYct<(Jc+^zh4-$VLscl7&JOO>CV<&yjCA$j8rU#?}aH&$}5$d{+qH782m z8ujJtr6($RQbF}Zlvci2081he+OXvVY%? zG*0s*&sMn()V*gpd54VXuv+O0)gOM4{36M-G>?pwe3j(&@=sotyjk)F*}YW1dfmyD zr~}%RzU%YHO~|di`gPgQ9Dt+Z<}dZDlz%=#@;0rPQ}!oU@&?(BY~A~K$ytH9xk6P&WpVYohUP|7@-WE#UB14|4=hJ%7UynR{%i?;MN>A2b{QGY2 z!&@PFz5017&kyvV=S8J&(t7`oy4UxTx9a(IYMq$HK}u)GY}NL#?ikWT`f*Oqb6$=2 z6P5o{CC`=|H`0C1kvvE9%Q2GQDtXuE@;mp??hh+{i~O0C-{{ROi^hi!3wuRHC8fcl zcuA!f35TnT;(=IvSeaLvsHg};hvj&rip7Z_D-T2imBCm%5G{(=6qQwnLxC8Vmxqfg ztHY%w)kWp;a5Pp_l9=z6g=-?!fq0-C4c(?FstAUHMJ3T_NnKGO6pz+<715HKKv8+3 zrlyWdI>d@d8Sj*|Y|6|T)5%bzBpM48RR!jc(qSwf4TdU}`J&j|V5F$FDoBwcC1n9G z5Q-(D0k1L;FAA5=36#Z)I920CxF%lYUs@E2M~9&{ZY8(7n7lj@8CDh!#p01@IKl~) zwkjN+8`IVEN~#lq)P+uArz=Xz%iX<-;$hvo(`hLTM5E!TH!l#41;e5C4CDu_B8OFn z%Sx(Cs)Hrm(iPj?Qkl$8M5=>jCGkK}G*H$tsb7Ziv_?s^la6R0Qca!sxeA6-xl++X zVTxTuBi4|SGFmfgnyYCm>mx|~s+5en2~nG5+M`v=B`vKhN<^z&ZI>mYQ5v}@9;Ah9 zVqP>*6P_0+iX}>8Wzk^7uC#O3bX6sx^6CJ$300ye24n5@YPHzSHN%3jXbII-Qxct9 z6qsi>iUk58aviD&Rt_8P`K8&M|Dw|qfoNS(tS(fRYO=C0?{m5SzD43lxVk!(ED;Y@ z$0&ZRs$|3=hZe=7C81bFI9lUPHPIo%M|2bs^%^~Oyu966@wcQcO5pEh~sEaks8P#O!D&9%-Oq55Oi z4Dqsvjl)<#M}d-1BI1te2lL!PED$R9;?=QKI*$Bv9Jq6}v7$&IYNa4&p>oPGSL*y` z^)J?Od7v~=SyUaaEUF2_VkMOUj6zCM5v=Aynm86Osj+e5-__3(cd@(qg&2wrZ~^cW1}XnoU&(0$o!0 z!+mmWRx}Y%w`s2(dKz7Pe!Qs65S}g0pIs9jMt?qBGp-o<_78_B|)sL-yE2d z@=i+WLYwQ+@@s~uC|+e9!6^d@|Ml(beE#ZGe}s@ z43LO12>qmG(YgpTRp-{S>QB|}_?cFrWmTOkw7t1zx*l?Z&56?JRBg^j5&bY)QWo#A zQs#$4)l4>tQr9eH@o06I#_;b|Q<Dla|stCVHD;aR{ta&Mz@1!&#S3MJDIfflw!r zuZ=G0=R8$Rbu51dR>U9m>b08(SD?&tOPgZmqP|IU1F5X0bL*tcfmH}iZ}r@zWHlwh zkV-@&`qtgg-{e^PZM*ap|Gb|yzX)!`c(bO>L_^S~#F{|7D%{ngwD*;WjVUT7R2Hf0 zre+v|{;k~@^!*R>4oZru@duULlnucado_U?#!>g0CYYO37?09M2Xc$4q>RVB9JUm!+c#-)#Q#JIz&o4@>n- zKjyr8&$+7R2y|-yBKk@xlS~}%y2v_t``MABQrT@cj^-$}XW0B-E8gZAvU7(0K4K#< z8k}cNu(hmj!li?eJv~uV8i=-!Z24Q|0XJpS^WzMT)EsX`_LW8}$_^cK*cj&XP$245 zOQS#5T&XwDgs7?5qTIfs(qLrdh$2={)NoOxBwod6!|HZ-OXp`hXURFUHkLY$%HjAQ zzBktCV!t5@Z7nm-t=+KZ5zQ8J=oIaVsqIci2v4$$1?oEHVty~86SO=~Cd+X;U<#wxkZtg1`CyI`9RC{%_w~cwM=8=Z} zPbt^$<5m%bUx7qLm4*T#ivrQa3KBwrDhU$A5(yD^kkaylMdFU1p1Sdq(C$zTv?uyzzT5cRjJmvh|gX?;-;+tOU>09kW3&L9t)v}di2yg0Se%ioUgzsG1TjTL; zy_^&cAJelcQoO{CQYqA*ah52o(S3i^9zi~tGR`HU_ZPFwCU=@$F${`8Y|+{JXd0|< z7Me1+M_?9OB+=XnKQq;31DEQmJG0@TyeH27E?c5=o|L&o8FwPgP>^BSz^Et!4H_W| z*SO#4!c6IUtG%vwXY)ZZgVZWag*@M$hpgO^Ehy)?ddr(@pg>!|xhUSpVAwcDk%jQg zd9F}Dhm+}SnEJ7;U1^xX({WWDw8_Sc1a-~iEwpLbAd06l(>!%fvf1ic!8|U~Yl=EE ztQV*kRt_Y5Wi}%T?q$(^iZCfcDKvMow z1+;>FA}?$9MlcJF9}SLUz&Sy73Jr^T(pP+NVf?9nOX8t%jo4`MXRI_N0;VuL5nPA=aKNj zk%AOK@OO)4pj$BcGFQR}hshgn3f*@-6or{|y8P4{F(@UX%zbBvgtXJW+KN_S6pj~Ag^U8B z);a(fT#pzMVmAw@^JqNP6CJAV*-cHQM-7VOj0Ea_kk!{Fj{7)e*J^)7N<(6V#YqUjD#TU6l? z5gdC1*M6eW9E&?60&+>Q}>U&TV|{{&c8ZMcLR%l-BpFN@^& zyu4m=kp5%2H$8J70=6tC{L6tScq!%d8+~`6{_{g@QXf_L`p!l01!W9akKfOMFZ%2IL&5fDSwN?JY<{iq^?kG8w~4Th zSl9o1h2Mz{q=GNLT2?6jQ!0m>d*5Q(rt>@QzwJG$^XpmgFW_PeO~TiCA!q*){~zFz z{;FT+3_J+@<_cbBS0}sYE%!}wh!TFB^Yq{|Z+|BU^L*f`-Qt69ke=7C^Rs^7!4tS% zQ^EGMnSUzh0+4h3v`_e+<3A2OfsSqha+?^-QZ?uCz3bz^|E?leYt0f%2;MbE-G{c|Fo(E%llzp?X#O_4ng>&)kxF)f{G8?U$q8 z#?@c)6F2@&zve$}rc5>Jf zoqF=pMJFv?vb?(Hq?&@$PCD(>@hex1KgHNVmCGf6RG&KM{MnkEmZ&l`qc$L9rc?Q; zZNsr$#lL)%ZPcS5eG)rm-bYI(-gwrh=ly;9St>@ATkWG_)Q`#!r#zj$MBb?w)gE=) z2Kn3JR(7fUQ9rSYSC(x*BtGT(o?F*Wd8lxRsr&!?JIQ?5em0eh?axo|Cw_20zC$W7 zbU*p8=qJ8N8exCO?dT`|ZOMOs@oW2u5B3x9>&IW|ryb_@6Mteqp52fCs-OH@`YHcs z{p2%GI>i3k;gNpg@9QW3tbW>mWVA%UTtD$^`^o>He%#ZK-`J0z-A_9o(oZ?h=*Q3Mr~Fs+)BeNy@oW3Ze@#F6 z59=qsp`ZG;^^?y7{ls6~PyQSFiNCR*dM)lJA9cIh-}QBPKk>1Cj=QEGf2p7RCrJML z8$W0Flh5t__`-hbdt^WHd;2NRkbd%cx*sp;r+sei=eY0olh3jJ#82(Vzv;)NTAEA# z@XrPPlyh-E`8+Hc?5{t3*-!kj{nTre_BU9r4k*8BxaE3~q*E0(QT zUbZqgzbaT(W`^!JaAn29z$p_?yDGnI;fm$KikhJ0xH4F^;u@`QOU1&nK=p#FDy}ID z%&%HmvEMBVt19LPt(#UZtX#gLs%qtuE6U{0@(HI{cB@&je5qu%|2#7`uB@n9GJolk zUs-dO;z-$4aaPIJ#nzGv2IeoRDof{KIcTbWzbI*6e!SzU$kObW(6!w^NSi(EL>EnU35`t+3Kn#(w^$w%F62Cq7|!`8;NPN{AJ54 zR+}3tf@O;r8E>Wa7ikyxiqBU&ELpxJShjNI()121C2&O`xMaohm4;m*>58hV6;(zm zP_cZ`lI2%uvq~>2Tex&d#qwa;vWj5k3NvS^$nuJX!E|1Wt18T5sgkISQ3ZA2RKe0Q z3xiclGmEvb>Y6}sg?3@l`P0i5TobHVDP478@R~qHS#ZVD6{{<%%9gHJD7JV}#nNEe z!pf`E_L})+iZvI=e4{H1FD>Xl0?DgxTF zie<}Itg6teDi*GieB?nyx{h&4EStY%xjKp^FLkCgmEp30wtW8b6=oJ?Wh<{)xytCm z^OtHXS4h7LYKvD$n`w&|E?uFn2H7PboiJDxlqNG?t}dQzii`A4qmfG zvyK0$t!C-~W1Hy%v7g#I6*~y;Y=#Zg1|ts@aiFp9K}KFG-&F3Yr#JC49H{a0ooP>sO@+BV*5bL_QBd_Y*!iH^4nWw z|AV#HV8fRzk>}fkw0Ds{+(;j&eTMY!jrhS@57IXqX`A)~(vKPGLD~WGAg{`JsIh;J zHWcaVBbE$SD=QpH3Rlz_Ui%1qrbb=*R@jr=UQgZyl`lY9o;MSd~dO+F9qAzuhDAiomsC0_~G z$=ASrUc@(${|7um{usQO{3&<~`4)I9 z`3`s+`OENj@;Bg7@^|4K;*T!Y`|KV^O z`AE2f{A65TPV!?A?;r??Eg=~ZR8zKnCa`J=VmE=PXu+T!%-=&xd!AUlcWu8zY~E_)hZ6 z;BoSDc!InF-b20=o+J;#wegw#e+}G5{@y>(|H=Q68vn_!Lq0C@M!1{&cW@8+dppeI z7LebDcrW>%;X3(!a3A^K;C}K=@N)8};g#eszystj!E4B0gNMjF;SJ;;z$4@dcr$qq zyoEdoZzca3-bS8-`&2vmf$%8#PL zUOPFn|DOrBk)I8Bke9-px;-v}=! z{|&s7{3dvS{5E(E`Jdq-@_XP7xH?C;t|nApaiTL!R{*`ak&~xaP_1|A)YB@CNcV@Cf+^ zcr$qeyoLM*cq{qM@HX<>;O*ph!K37@@DB3-fXB!mgLjfY0gsbM;R*5%cn|rj@Fe*g za4kQx|L=m^$gfS!|H(f!vo}>!fVLCfQQJx zhBuIZ508*%;rXkXd=R{a{2+KM`EYm}`3QJBxeFd8KMvkOej+?ZJ^|iIUI>qqp9N2l zpAGLJKM$TH--7e5O~~y3KE&I|XTu%jbKy?%n_j{APd*>l}lg#2lEGx-bf7V;P2t>mx5 z+sNO5x0COJN6F*x4)V|8G4ikAo#cDraq{os33Bc4W`FA;9}G{DJK)->nf*V3=Lj45 z;fQyT9}Rbs=fPd%@-v;-PzYH%R-wF4UzYW*PKY;tlKZX0rzkrvM_u&3m zN&XGu1LQx#Ysd%S^Rf{6V0Z)hPV>DeyM(GvMvy)8J9^^WYui zv*0oEOW~d5m&4=a74QW4mGB<&06a-v4cF8!=vco0^DDTG{5rUUd?VaRegoV^ely%n z{wKJH{BC#w`TcM&`FZ%fLnnV2@jmi)xS#wPcsco2cqREi-~sX&yoUTOc!>O6cmw&z z@CbPqyqSCtyoLN*cq{pj@HX-RSodou9|Vt*+uAautst}iPlnsbr@|fNC2%MCOt_2O4|kJa4)>5RfESQo3HOq(fa~O|;Xd*; za6fq+yqx?u@JjNV;Q{hL!E4Cxf``cOhc}Qn;rSv$9>+RHGx@{Fr-l4+cq{o+@HX=2 z;O*qw;ZgEe;2q>|!eiv`z&pu5hR4afUNE17666WQ_mF=HPm+HF*9tTH{||5*`G6f;-8F!CmA>z}@7>!ad~U;05IQa4&fwTqpO!edNV(KY1yD#o4)VXjW8|CQo#ao$ z8x2GX8*5-+sJJIM#(`!jKJ z2RuQ37`%skBs@tz8m>*r?EhooHu8M9gS-IlB=^EyWQ+O7iva0Qp9E4fzf55cw_e2J+kC5%Rm?&E)sPTgV@Vx01KR z+sL1Vx07#!N6BA;caXmhkCE?!canbukCXoso*?gm_mKPXd2y0_AL6w$GyDIKa2xpm ztUox&=i%R_a*`j2co(???j}DR?jauqFCZTS_mYo;>*S}xedLqie)8$?a`F;*CHV#L z0Qtr68uGdD5cwi_1Nl|(2ze0ROuh!*LS74RCI2MqvUtPJIEh^$H*Us zcar}d9w&bao*>@>?;(E?o+N(_uAPl9t>hQN+sH40x09E_qvQ+W9pp>kG4cSsle`8VC%+b+Am0e@A-@rxByWam z-pu~L1D{vg$XgKaAioFhB)=c-B7Yd}CjUF!Lmq_}kZ*%~$zOu&w!H;2q@0!(-&9;Ctzv+g9?&5Z^}rB)pycd3cn3JG_JZRd|g2O?W5yd+<2< zC-4M$H@t`ZU+^UPw{UH0X8->QZX+M~ym?+67Fw~$xE zTglhK+sLnjx07EFkCHdRJIHT=$H@N#?9`Ri~O`8#koc^vK`{~TUGz6b6l{|>H`{{;7u58Ps2*M4#vyqw$)uOvSV z9w0voUPFE?JVfq>H;|tMkC2}VZzewj-a_t$x00U?ZzDe+-cCLX9womF-a%dtkC88i zcamQPkCO-B3G!-q5BWNHlKeWjHa)ZdZ-m>(o8S)eTi{OeKfzt(cf;M}_rpEpe}fm0 zKL+=bKLOXtqi`SjHn^YsC3rdcPIx8xJMaK`99~2I89YSZ4R0X-7d%3~58h1vGrWa7 z8=nibk`IQrk=x_6hUh-PhS0^8w`u$(> zE0K?%dQB0CHX4E2gujKYshQiA@VT1f&6#y2>Bo2&E$8&Tgd+kZzcc3cC-E4 z$R9v_J9!&CO8$3v2l-R*82NMXPV#f#G|Lkw--h@E`9I)2F@?LlWdG=PbeZ1s@;X3&ta36Ut+)q9dUQV9GJgSmB z5Agx=6W}%EC&NSJ6X6Zyh42XZneb-v>F^fv^Wd%IGvRIIm%`i0%i&S-3U~+kQh1EK z3f@V+8XhNK4^NN}!}nWy$gf9ylDrYFos-%BBXAq}AK(u1JK#?8r&Il({2s)+$sdAy z$RCFnkUt6cl5c_Q*3F?}68le+v(h{{(L!&&KziBIHBh z&E$u|TgZ=uw~`+VZzCTEZzrDskCIP&y3G#Ay5BU}FB>7Za zFPfg&|Cb})M(%Dk$6E*aYQ#Iq*TY@p*Tdc9O>htS&F}*9Kf%4^e}U`d55RrokHP)q zo8jf;QFtZ!c6fmNRd@~g8}JbMZg>OvhIh>NkC1uSQz8Cp7kk=tTLjD_gGx=}fE#$YrTgh*Sw~^lkZzsPG9wq+|cnA5T@EG}KcqjR@ z@HqK#Z<+0%Ab$bzJ>)OKljJeDc5Y_>e;aNie;4i`{}ApZ{|xRT-vf7(?}K~De}os1 z55V`_yyUjj_ut45f&0i0gZs%(#^>PWjM?Ysl}xeKth?7UCPokH-2~g#10kH-WWK1n_w>%&@U zX8#|BcpLe#a0mHVxRX2|?jkRMyUEXld&sB53&_udd&w_^>*SZgedL$J{p5?_<>Xhv zE6D@!0Qu=V>DBUXAz=`5Jfwc?cdM_k3XH-%P#{@h#*xz+1_0g}0Ia3Eocr7kHHX z0eA=b!|)h+JG_(p8F-w0D?CB|61<1}b$F8eUAQ(Qv;Thxw~>DacaYzQ>(@#CCE{J= z``~W!AK)JH0T@>c$Opr{)`C)J$`6#%bd^EhA`~-L<`N{AAc>%nJ{7iU=d^)^= z{5*Js{7hV5&E!7Bw~$`~ZzV5-w~;S`x09cO`&X3wO2l`N2jDUCRq#&oHSjojEj&RU zhWC(1;7Rh|!?p7>`+p1EMt%?6LH-cjNq!E_i;MhG#JkC#gnP)JgBOr@z`f)#xK92y z+(*71>tKHJ_Yq%C{u#WI{Gaduc@MmXJP8kx_re>-sZ^R#C2gAw0Ceki<^ zd?dV$d^EhB`~-NE+yn0*p9qhUPl9)nd*N|%9iAYc3GX2<#C4h^_ak1rAhZ8p4!4nC z0e6s}kAChXUxs)W`AWE(yaw(eUk@)JuY-HZo8UV6&2S(2AK`xTzrf4M?}t~C{|z1> z-vqBAe;OVl-wJOae-R!bkHMSC--Nf2zYA|A{}|pz-UV+bfBHUi-W4V9L3{`Kx9}MG z_wY{gUU;0`hTq>zkUQW#%NFZsc6o%~R^kNi`7 zFUU_m0`cYK<@kO`CHYZ^50K}qhPRMUgSV0|zB{s7j^D#>3# zJ^}JK;5FpC;UV&m;0@$&V7)y;oncfk|n$HRNb$HSB46X4oKnf?C^xQ*NkcaRsuo#f}iUF1Hvo7@lg zke9&=$ghBV$(O-(@+!EG{8w;4c?e!ke(WRWytk5kBjN+(H^OVk7os1A$bXOc2J$=M z5%Ryno5>%7w~#*uZzX>U-bTI!-cJ7PZp{D5UqpNdc?=#Se+%A8{vJF|{uw+${sp{; z{A+lU{0F!;E3^M+;oqyVk>|i2u^26b7@+09M@;rC}`B=D@+ymFiPlNl& zSEC>L$tNSeoO~L*lKeb)fINcrr5f^?h!2tb;SJ;GN{n@HqMH@C5l?@E-E};YspG;M(lW{{JN0M*afaLB0d- zB#*&e=fQi(7r~R{<1nsjmt^+; z&G`2&Y~)LkkAu7l?j)~)yU3^DIo(bEFO0(;@^#3kfV>v&C2xT1NC^7HU}a4qByBA-_B zN8xSco8j%`&%vYQ9q-kwN%lv~{-9l!+5eX!-bP*pcaYb>o#gA`F7nzp&EvYs>k#iD55o({o8VsZo8db7 zZEzp?9dJMSJ@9h!hv1dukH7=ue}~tQKMfC&zW{F_e-R!be-++L{uaE2d^fz6{3Cc9 z`RDL<@;&e<`FHRR@}J-_@|-u!{?JK20{UF z$HE=t9=MbIbhwNBEV!FohkM9p!VAbRfqTj4!FBRQa3A?qa6kFg@N)8McqRE-c!0bX zUPImh50T#pZy>)F9wEO2-b{X6o7t~g$nQmbEBS-)HuA^d?c`6wqvTO|2YClPM*b?i zll)D1ocw)wg8Wl>5BZnyB>A^+ZEj}&{}FB@AAoV&L2iRP$?b3#d2VX_Cm#j(kRJ;# zAa}#PXu*yaZlJem*=vJ{w*`J_jBmFNZgfFNR0Rx885|^Jem^ z5Z^)`gtwCa3f@M(0p3o&5gsMK5#B+56Ff%#M|dasjrhIeIC%@=6Xbt|_mH<^T_Q>T zAmX)onf?D!xQ)CW?jU~#?j+v|cagsgcay&X_mIB>FChN_?j`>eu9JTO_mO`C_md~# z<>WuXE6E4q_fiAo2f}N}4}pishr=7lN5CWGN5h-R$G}_2Pk^_QpA2s!p9pU!p8}7P zPlI=mm%wA>K6oejYB9`YIR0`iOCUh>P}I(a$V zM}7s|PreLZPF@ACB)*^RB>6k3@xMH?|Mwu?M!pa3AU_Vz z=}z(=5$__;>NLjzH~ApAhrDr@8DBs?1o2+-VQ`&%1l&h{G~7=<23}5nBD|73A08kt zgx8Rt1rL$GjDI(*fxH;;5%Tlk&E&J-E#!0Ht>g>fZRAVf?c`PPDEY789poW+jJyHf zNqz%7PJSyqL4G^Dhx{+_B>97IZGL9|e;95fZ-+a`pM^Wgx58cI$Ku}yaFf4`cn|p- z@B;EqxR?BWxK92l+(+IG_ml61my?gd@7Gk4e~Ry+3G%`49`ZxrN%CB{wlK5*kA&OE8_}N~Rem>ksJ{#^QzYJbZUJkD$uYd>0m%?kvuZD-n zSHT;|e+7?_hv3cR8{sYFP4HIoo8WEae}uP_{}~=7zYpF){t!Gyz6st*{xm#Jz6G8j ze-Yk8eg^K#N%GebuPw^#|L?$UB0`YG0uizf?Z{Y>xKft}@ z1MzzqI{CqHANf$YpZsumIr-7>O7i320rGM18uEO2hq8k=g%m zfZND#g*(Xq2zQdVz+L3`!rkP5gL}w#+>7U5^2ZVHC4UmGlW&3h$alc~lC3yrMAiot}Lw*N5M1Bvv zf&4*ug#0mhGx?M77V;>(m3$k#jr=8eJNZD&&!gnMsqg=g|MO9d|K#^RYH* zz6+ipZ-)1fe+W;KcfqwQGW&lI+(!N#+(G^m+(|z0J+ode@&n;+atGW)J{(>^J`(OF zKL)OokA?fl$HV>Pr^3t0C&Merr@;f{=fZ2qFNBB4{qP3zdGHANB6u_TQg{pb)$msG z8h9Id2;NS<5gsMK5#B-mdw7iePIxEz$GES>$?rjYg8U(P5BcNpB>7WttunL!zW}$9 zzX*4bzY2GfzX^AdzYBMhe+2iCC*TF-U%|cP<1x^W zk^A7CZ>iu?Egy;ZzB)D9pp7|C;3{qi@Xl*CjSlG zL;gE>0r_okFZrEto&0XNkNiHkpZq`I<>ZgSE6JaL2gsj=*N|_8hsa-qH<0gyN66oX zHDzd(GH{A+jz`2zH}7I8Q+(v#3+(AAT?j#=%cafh8cau+od&s@;0`e7TPcQjNSf|y=i;<6y z{5-gyd?vh{{1SL2`CNE_d;z?M{7QI;JOFPXUj>hluZ1_0Z-BRuUk`63Z-Tdx{}$d( z{(E?o{C0Q;`Q7js`N#O2qLaK8@wPx_|4gOJ$=j~OeVKi|=>c->TGMODqw7o$kq7Ec zZy}FuFuj$$1^Kj*x2-kf+sOm)D0u|lyuxgU1LVI|nPdDHE6u-JEPjc_TP=Q^#oH`? zsm0wmt}30?+b!{zS>j!mc&kS(@l!1E9TxXn++)ed>M=|Fd6xK2i_f%p+~OBn+_}tb zw?SfN%bOcr7B?eIcUyd*B_EH)vn^g=admD|KVFNgW2b&}i>LmZqiUPa;)7Gc^6Izv zffg^f_(2x0wD`dm4_JJN#cM2nh{Zz|w_Ciy;tq>PEI!oY%@!YK@fM38YVlT!54U)m z#d9s*Zt=q`9<})47VogQ)8a9UkFa>B#gDLf+~OlGp0N0l7Vok6D2pd8ew4+v<$eA3 zXp7q{?y|VU;>TFrY4On(cUk;ci@PnJXK|0k$5_0;;>TOuYjL;5b&HR+xX#cM2nvc*Fd_gK8a;`tVjSo{==H(Pvy#ak?Xs>NF^KGEWB z7C+76?G``X;!%qiSiHmHg%*!l{0xhCT6~hl;})N6@r1?Cw0Muj&$4*Z;$Dku7|+$% zS!8jW#iv@_Vex4ecUpY9#a$LJwz%8kXItE3@pCL*U~%2zUW=DlT(|hS7WY}a)Z%`N z&#-v8#m~2RrNu9>c);R5i`Q8EB8!JCKFi__7N2eLh{Z3q`2TzR|61VxrWW|xe$@AR z?H4w^F=xk(S(;uS4G!py>9sG|wiwmyo%qpjvb4RuV?LG_`_Y<;uT)$1c752}+Z!>` zY9hL~>$P-R-Rk#tJ(o_aiRa#~htp{_;oRHx=X6><0POAhZ91(co_o7Cq|<89+}m|^ zI;|#}d%NbR(`tgbw`*oPttOUxyNc3jHKE+wm7h+liR9j{W726gf!y0QG@Vux$Gu%y z>9m?K?(O>5&#C&ViK5g$omLY>sed}HCWcb~bXrXarT*!(ng~k$(`hvUl=`RBYT_sL zPp8#{PwJmetBIb}Kb=++JgI*=ttNI-|8!bS=%oJXw3^6C{nKeRfs^{D(`w=-^-rhO zgiY%IQ>y+hBmH4IttMzv|8!bS%%uM5w3?7f{nKeR5tI6-(`o`H^-rhO1D@1BomLYu zsed}HCSX$kbXrZkr2gr&ns7<|(`hx)lKQ99YJw&8Pp8$yO6s3Zs|l6VKb=++DXIUD zsrsu4l$`%`T1}j!{^_)uFiHK>X*E%j`lr)sf+Y1%r`5zr>Yq-l36a!4omLYesed}H zCO}gEbXrY(r2gr&n(#>d(`hx)k@~08YJwy6Pp8#`t<*oARudhme>$xuI8y%~QuX&5 z=?~LsHKCFEr_*X8BlS$xuDpLP+T1`--{^_)um`MH8 zX*D5{`lr)sA|mxqr_VFe`RTNpkVyU0X*Cg%`lr)s0wVQKr`5zm>i<3JFQZ|_uhnQM z^-$yAe$w-3JEw2on7RKgly0JQJ*C%Cx|-68C0EIHez=^gWcmozk~Zx{1>D zlwL>aYDzDobOoj7QF=C|XHdGB(o-lskLnxg?>7Qiz(t7=UOX)8u z{VAp2qx74Uewor+Dg891AE)#~l)i`3w^RBSN;grup3>_mT}|m_l&+xkJW9`|^bATD zQ+f)eCsO((N{_Loi!RZdCf>bS)1Flm$D)giW*5zxeUZ#U^+kGP_84_{*Td8E3i6|g zmu1YA;NPW!g`O~J&L-?HbgxO*TcU0jO1$dTwEC#Mewa)^^`?^|GVgp=%}w?2SBbA> zb|bIPs<~a_Gf5NdJR0Y$mk1u5~nZJwEW)imc)3; zLe=5K;dv$DZF=qZqpp2Losz{;<{9Br^Xhk3Kd*0>3}r`6Z(N&a%ipKc&d{yRS|Tpx z=)P;QF)o#ce@>m+!NOf zWz!R~Nwxh)Bjjw2lBt^P`pRQ{+1_SkE0@nA{Y3L(ve)0Pid*}F9`2kouV`-3yrRpC z%C^WO-!t-Q&ok;GG`=08H{}*TDuIpa%DY>dqWkX>a~sEen2uSmT3m{9i4;YZ_5-O% z;@2{p>{=twPO|Uiyzh|ozSCsi#N{gX0*OuJ$@OYK+H1_G^1mzzzjnDUeYEzI9^b6u z{Am6Ty=lsGvPW<3*P$%!o5kbpN7t!yAeEmoSUxI~t8IXKDNF`)<+%GKNIl99?v2}z z4ym{;c$N5FQYdM&o$6)m&w98=f9|WZ^yiWT^{j3BYd;5vO9oq!fvq=gp3l_&YQ7hm za*yn*Ri8Lpubpz4L`vm94IZpFPT3@h#IA3pK8vKR+j7=PT-H3L|S$kvMte?mL9p{)$nj@S`L0f$<{=jA@3M{STeg$cGbgMrC&^vlFg{^ z4La0`zgC`H)Bt;$ah>Kak*NHrgx@G{j9n848{zv@_;-m55PrBBenu+1CLR9XH!Alp zRrsDnT%MCu?n$Zt6Vhb8M&4JXgWHVYPgL;diANE9lLY7QG$LoFBd?c8U9vq`_0kjT5~Izmebb#)5%rCLQUxj2WsOk`vVU zEW7Wj8juA zH?ypZ%nM)joCT6aas4Oj59z*G`kCBivPuiT4xTHc+N_pJ+N&W}Lw@FI37r(4G%CIk^ zd}&kONb@Rb9PXFuj#Sy3+xF;PCnC_}pbrfH4Y&e~*_z3vj} z5%wDj1@&mviMBS1%$nxXA2L>h6=dzxQXIr+e`lzYuSqaNo?U1k?Dy({!9BsO$HC5edY_Q9Q`?{Zz zi_1KJ`Oz(l`;NFck{UZp!rvHEPFeUoOm95fp*Nj6ptQ-G6*_bDxlQ8+R3Bc_Sej>( zKB$Mg^LtAQJE|@)jw9zt#*u?cP8^q)A1w(lmAOU6NFk*Osh*`ezua#1u`#`{W2F>z zdsZfGvTqtVd34Y|d2aP*-LIv~YwXjbk4@@LHCaWy($7o6&#S(3{fzKydf|Ka+PkGw zmo|;6mDZL2n1)LoOv~;biQ^VE$Z@u2l}Ote(bW=d-&Cy0VLs92S{VCJy?*DlrwCjoqy$(U3Wjy8p~yx!g^y)v6y^+u7T+(_9sj*z|err8IeIck$R*FF+j zcfj202Se)yRagI2vauz;k;S&~^Ojsz-!MHK-SCmhaI;#keJ+0B80|;9HaONK{WVK_ zB3rP%N4j=VyToY4_D#tdS+9n_E2-U+C3o}#YCk`#_SH~P!}_eEP$H}Pv%x*3Sub|m zOPXe8wGWmZHV=@$BC5TzUY7Yr*UM57W8;w2#_o@dv|3Fzg1dJbX;m6C{k)M@tI=lq z5tTOI-dnUy=AS1XDf7>1Sw-86oeqhb5uPolQ>KsY(j;2f^HS&O;cZ2=$@Qy;No_YD zAo_%{X{OXm-|%zqAWd6+gz2id?NOt?M#w=3>Fo2+xKjp{@h zIT`nv)b*iJtX>4h&=Il7OD=(W#FKlVBF!qQ%4pk~lr>a@`sI$QZ)q0M(_9$LrxAX4HQYyi{*I$0l96dXCIKw2)r- z%F0Xh#x-&Y&N^K>ZEWS7#%V6uJXPNylfvG!R?pF!#tqXOrxmE{;BwA;0D4~VN#NRF)Olg@FhzOy+0lR5K54GYQ9w34hJ`$YQr({hCMs z?^NTF+~0dIawG52a!_fF3F?qdzO2OGzEb1wq~41>-Qm=AZY1^X(^M~zyO25sTGvX+ z)x5u>{`R^*s?9Q2tKVm@yHVbkHeTVV-&uW)YLN^2MyQfT^#CbD%qepD22V?j`$8Sk zmLKgNVzj4T8_lZQ860KbGR2hh#&#H?CJu=K4x%#ll2g>lRe-rw5)~Z7$AHC|G?srvt%eeGL zDpvNB`0AJpQs+12olqh-_<@Nhlp zZNKIDy4R|AZ5uduy2?y%S|h_pa`ft>@!Cj7reYXL`~$KmRn_MxXX9|leK}c+;H^m&r8?oP1JYG zq)FX@qyRZxJ|UbZ$$fN}HzQru<;h4d?s8?Mmv=cb(!nk*BfX%jM}~$}f0p9qM=b?} zKchN!V!V7LfVs?DMaDo^WZdD^Ns%5@wC#Y=YBn7H%BW0YeX17!c^glbs4qWibRqSKF+-ZGD7>|(_NNi{>nBJqQZ_X)l$EvgV!(%zhcuR7YGj^g zHC{@6z4p4p!*}1PuIp#iy-YnU{h*et)N)ppbh@IaD}=Xei{~$0DGgMa-Bo6EMTwU} z8S(!}#ZQ$j+qGa-b%mMvHgC3uo-X5dI{uHT_+du;^6I5aE%9bgmw2->GWK?>dt!aB zz3y&l9d4R!%A{$`cIoOh79~PbGGn+l#_k7Xf1|lo<&H`n{1(w|+8n*M*de1zu`^4J z!;$)v%TRV+(X zwr$=lmm~&k8=$E%ThE&3P&bS-j7#kE#8EOhsB$J{i<_Vh(CnrWGwac7Y#sme|zq(zS^_S?{ zYx}FrkW{9161GiS(>OcNXpZ`w_WCS2GAdxNw@H8LnjwP<@-LCaG`Ua7d6}XHd3oNv zPTE%0?F`B37j@hEX}WHzEzPG`Y2Mo1(lg&rTrZF7Mw|X51J*X}jOmTVdBxIQv!y); zt1_Vd-j^jMb&R(p>=(zF-*=40b$R)_>(w=2zh#SROgYJNq^6ZwiIJ&8{Z5UIs-0y4 zF*rz0q`LhzR_DnzKWN*4169g$7Nue2MB3|QCaX!~)Tu{%y|LP<&P<0q4;!UF%P7_i zr(VA!czC`sKiQV;7_2u6sd<@9TlSa@mo-DqPOrUwi)3RA)heG*DxdG9nnjyOkCuC+ zcYqq1Y+d(Dpt?@gW3zG1JS|;c+crHfPb*pYp6qQ@?#xsUk4p~4GAqf;-)Rg#>F1Rq z`=*13HykV-MwRFF>OFc^=eAT&QZ3!JPIm1ZFXaRrs5*t&k?r;B0yVm1{m!5~ixoTd zrhvLo5?j;?m~sAP|Hc`4(gY{!wdEd3QpH?NFSl8E| zQ{DM%xtxvC8>6Oi5gYeqc`&}?FLH^8Ki_K~nw=+q&C0VS27Dp~kc9>*(ZuV`%`&pe z6Ml*G3mNOP^W+h``V4tDH_xet^5063q-0+i&_CX5pDQExtPl6v%Rbs`zjREaY?bt` z#rBgww%5*4Luk{GQv~}8BLy(Zli2vNF^YFhl&JLCd_+BWs|Fb>`ef>4;*t$JyK+^q zy12WZmUEkUU5c;9_1SVCiJCXmXH{prNamn&ALLu0eQb7~eXKm1sJ~q5FHdi7?^Rh+ z<`qM}lh^QE8GgdqvM&CDEaZGEqV8=rm8Du;FR%|S&2y`~Xnv5aq1J&1LqS3dgAQyeL z9)4Y(wS&vlRHpFlU`727dtH-6HcoY_Tl9vPH91@RUKmhqm!}^!_5}~<&AnN2*BfWc zqs+pB>EWy7(%%`Jq&J>xGkdCB1xM@Q5qkJMn;yQ*rsh29dw59lR?DwelXElAeA?8* zb7XdDJf3vF+jsp)dn6jg9t`?Obv-LA`}nr6GE=2OOcbz{!Us+a?Fo{^W# z^%Z0NZk9~GZ<0+<*o_iN%NA{xCt0n?sDyd>_SQvICrB~l1!pE>%ZoG&WneK>cvqU|{s%8U95=BJ-e z<@;?a#N6{Z>{%kaj5c>U8oTI|a+@VEIN5xD)f;oeYQIT2zg92XbH0-o^&@*GRNU}X zT+VzI5YE}DUK(?*GE*Q zvskJ8dwSzY87;%l?|UIjo;w=XsqsH(PrM{&EbT{#8&kNF-rPy*2-}NYs_c!kouSWU zjY~Eg{qB(7+#}7+1!}Xp_;L?YAfI>LZ1$&AJBFX{enDN2sdQ>R%~(v6B|*zVtvp8< zGX_~+mFd%XnS>jUYImt4G+yo~ZCottYqEa2CVNKV=k|^A!Gl(!1_ongM+V(7cdDYu z=VQtD)Kxe+PYr(K)Ogc$UQS8jOZM7VWtUX+k9WxY^A(9yQJ<+p7Jj_4u%v0$C|Um+ zAP;tRCDQqu^jPTMgYDO=|9a@;lk9af)ax93-8|Vgd5yj9OWDzQ&c?i19u?B_W;H37 z#&DysCP$8pe!PJ|$KKn`l(wU{!_sg>s6Dwx8`({m2}?_3#Ww zcf>gE6WHq%*-JN`2vrO0d)I6MT|E-2JPwdNx}Q+vyJRGFKt_^st87cd>l|H^B_^V_ zOS!S#a9O8Q7j>PeIx)r0k`2kv)l6*TAlXtPi=cYA*cm!wjlF)K+)2!3%ROo!Nxbr< zDo3%Sr0@m%^&@4UqR`qLZJoXDdU>zcCbIH(tA+~~JG!2g%+;;OK2)<0^*ZE_Oa6F_ zNzX1RaYR{oo%#=hIFqU1m&gsIoZIrMCgo>lDVo$c<*mNKOK zhdTRmCE4pINzPs8$zSIEKpozCag?a*QZ5c-V*Op;`axHtJUdE1&FE)$N{jXNvpM$q z8w9NVY_UAjr~BEXQbMDj&9m2iu3F97&$=tk^6bB>1s9~dnek*Mr~Dw5wb`q@GP6{p z#i^>7%cdUbWvO0duRTg>x<^z``9*K2ZZy6UD|gQBKTDIUrrRMoO1kTKbsD9Z#+C4} z;N*Gs`j-uq=c*E!@z`dB7d!gSg3G9vJUn(?FVTs^cB|f1?3B*Y{nq4l_WIxcC;NKS z`<^TNrgqzHwu`!ds?IU|Hdz`rI>(`^a|}^Q+0W=4RR@OE>c!A=JX<2tO`^tIA$8v} z?&p1T$Tx8ZlJx}3NH5>l}ao(n0WY8-LzpRIYc{Zcn)fCfXtfBPgE|CCry5)kDwzk))bsHIF)E&Y)(y04k zkzTu2E=PNPuF*Z^`x@Ey>s5T{tUdPn9`$B@)|2*nb-xI$AMmWb{#|*e>fw+9O^We( zVz=~PH8qrP&N%Qy8j?-&FjT!zO=e|sCeivpslJS8-7;BKo7Fr_p5I5R2wB4$E-Q|+ zCA(2gM&)vDkQdxx3M_XRwOk+Tw;*Hro3*qr}J^h8M*`566imOA~$jKi1F z4`nHDKhH7J#~N->?XmEEDQQvo4Y{NA<{m4H$$D7Mn%oOks_r*TL1XSn!{q`sdVy+3 z=?yORsuuL*B+tULjykpZc+9y~1{L`bOs)xInL*}Vvy3IT;l`KQWTI93f=`W!TjYFh z@6G+&17gh@8{&WrAI$zHTF*Pa_{aygKz9wMx2%THQ3}^{PGccXWL# zpKqs+r@pwSb$uj+@~P*SEn;f^uAaW-(=QqK{wyLL@>#FE_U7I+SI(Nc8>u-?=H1Mr zCQo16R~%#?YLl0XWHRM*$eTGbqw=c_3q2cjr+N~%4=tA!XfHmC@|v^x?UJD!sc@@& zrX)|6>WQgHRoZ+SQ)^43^swBjbgA`JBj37|yM6u+ zxgNWw$Op(qJ?G>bpBzL|=R1FA_gmKfzFKvfD*0qoJ_-F-uu#4-pgzJ>{rNCm)|aGB zi;dRXezw{8@~tv-67xPRtr?Ok%5`#p+E1pv7fW-?*FnPPIJzzCS$eq0*1frJyp{4; zMqjf($@Nr#>uEx%Tu(FP!_q^$4>Rg9!@Qn^f;q}xN}c(TZ-ziREv^up&<=a(KX zyBw*92k7B*&E{{E9v?QZ?9A(3b}KdZ=nFQNV8WL;w)7oOE|0?RWi)HNI<-QxPgdZ= z(kZGWlm7>5r;zQVsdyg)DHLqBf4zw+~Xs)VH5wbkoG` z@`12fAUX9?R?GE0(twx6vXv17t>)-%Pha20&X)F2{o#MyKh<+*dfv4E z{)w?+*(Js(89c%q7`%?{UgPoBe9APQFjXg0HxYAwqsmh>yCnRrxdfVcP!5&9L%z=@ zeOZ0eSH8nnC=Y?sOhaVWWlUO(et>7Yb@GXShO7Kk!=pU!UHr@PsI&UNDbIZ}ndq-P zU&?dre^#Cu`zepQ8~ty}qds5luRQbiSDuT)KcIP@nQb=DF||Kr8Fy`U+G^kFRrB<) z&uJ;u9NhQme1+dm-2clnwo#@mQX={OJkD6(^@#JfRnBSO*1pZ=dYXKP!6=|S=uFSE z_2wRqVxA_CMgr=2=@YpjNnv-`hw5^>)jiVB)D|)NRto?KDFKhb;`B1gL_J2>#O}d_``xRFE zy>e*PReN(!pOs$k9;eQL^nG;(q)uw7!g3Z8>trETeM8Bm29873rDWzV)ibXrv~PtR zw_Cm`X3PgI<=5qeUGvK-yd_UClHss)QPbBa^2@c>!*atj&X;=TOkMvMnH}n=)b+2X zMyejt$@Q?`W!A+rCtY6EpDg>I#QV#>UUOeL&C(R+DpkMxe|aGtU-nm%YdLoR`~Tv6 z+$*`r$fMer&PRyO$CvN__s++g>VxN@};s`jD(B%qaXSc#?UsZrMB4e!}#} zwZvJnzN0$LDKq3={-z4m!?LpAw@GmI>m~BwX3Rw8t6o#pb(>m+lZ(MvFKCmqE~^eQ z0XB!tqRY1!*Vlhh-ogLl@_s$lewixojq;J?|DwFwf3v*uDT1|qFO`)9Zr`)=cXtm{ z{Y9-Z8tp5;LKPe<3!jc`Sryo7{{EFTt$Yh|ckmr^EmFSzB@5K*cdgz|x9#X(wyip? zM*I4tqx@Ixt42|?yur277ao#XGs?Ow)fbAStTLH5$J>nZ9$(Tp*(mK{XxMyJ+IP9M zyV9kVscvRZh{$-GXq6AJshsKY*u4MBh^4;iC(}piw!@9_?Fae%Mpk?<4u3i$HGgaBX6fXEGFks$CHt!;tdLLF)dHS*gETKRxy;mhLH8!Uf5~rS?CZMQcqU4%pO{}V zvu_%tzDMbk1}+KzyR<3ytLs!#s^{(|-*=(!k6Z1qZ`xV1aQN>^vv!`@`;lD7@_l9X z-ERA)bL9ID+tt@4-!$S&!!OFWOSVMhYsc~}NZHtQL6-V9vIHE~{b}C-UMjzr5#B3b zczmt2sYs%#vKj`Is^4Y#mwZces(sTn^0n}Avbxh7>K$FZbKBIc(GoYnzNtuleV}SU zw|rOsoUF+w2i=oT2+mRk==znkh?GkzACmJSpPv+EbuBgw>2qYyO9pfgH|wQ-E#!GA z{(#WG4-8%?rTfbGcRJGjPx3e7Ws9@x_`ZD9UaGBz3x)qb_TC0O%IeJjpFn_M(FqnU zx^x}du!U+dsaT0Z%}4?>IA9dCSl>t{lVoI)iIbTStUz!QVLFb|N>|(3YP+_&+itbp zt_4&~KnYr35UoY4g0$*01_ZSQd?UZl_dL%e6J)o0{jcA3{jcl)-@u%6p7WfS``qU~ z_kExHygWVHG1~FLmlN3;XC~g@fh^Y#%kBroC?IBf%C^|7wt5+T9Wry5b$6^B@4^lQ zq~JF<&ma1};P1R2_TRlfIA{ED%uoMa`Gx;oe&8!Q=6mTc#=gaP8gT_A0s)UOW9y17 zL*Xy}@AH$7y#}*9M%lLc3wu5D4Ggw^Jb*9HG0W4iweeZ;ciwj#^Lp zqcUC3&VxUszrhx$kGy3scvti*=11xu&Mp4Tb6 zKCPONJnUKeId*FLA-chBn$V^A91FH)VkdbwQ&gGQYclU7DDEUUUS`#ez`^)))(1Ui zYI{&(vx$U6>!6niR#D#|YF_$l7<{o6t9}R&DrdPins7der$HS<|#Hj9sdLKe&J>< zKYHD_J(i7AilMLmNk5;XC7hgnwtv!(hdk3Cw!PFj7;g4Fj8D%QKS^qS@^EpYCXkML z9Ll*==LM^^kL7_!#GLmdPpzL3WRZHQZ*FGcB$vPZ4@-*z1r|2Ywtr$vfOapkMR~vV z+9tJ`b!29615CVwE=5lm+y~8wMiba?Eyl(y;qm7j(YR$!FS4c^{1ajsdT3F`ew-%` zIDd4RH}#ArOdM|Wr(V$3WC_}X7o0LIae^;>z1fd3!g@oUL6!S<3`(E)S>9E3CF8X* zr!w`P(}FvnC83c*duWiXbN2b(?0+yb7u>uvrcE9C-IB9M?|=_LqQ_ymUIOr>8_ExN z#6PF^C)$>5pGlJA7kS1W@`?Yf>fH{;R`ttWdNQN%G7dz#h<2+yJ_%%-aH=O4sj=$3JZ+85j zIR1Y+{u7SB)A8SO{Bozfcb(^4z1KPM?>q6MA$+y-9~^&~^L~=^{2k}{*N*?3<9nR< z({lN4u*+E{Kc^2GehtB;?pNB5#0t@aM? zx=66M`Z2B2OP}HX14>g#%Euc1pDYtq(>2JrY7bbcnerPN!#H}M*>VZ_f@fyCrv z#RD_Xwbn=CWWmRMnK2cZKJE=}sY@6w(SnS5F81C!YQ)nHee(HnedQ(4E&LNem-vrHgpvhNm6mN8?24G4j zOCeD}nYD;6m`)u@(X5#-=s~-xjRlzj$&hj ztM9Xe^9{(utEu*B&Yqh)8I9oEvLTSHvgy|!>?|2W@g~`3I(eio^Kh}s-&g_Mfr7Uz z?}Ny~;LT35ZNAi#s#p8Y3$~@6^KR`dTugEV&*q*FPVt$yv%^kevMX2gi|&9+Y4ertM%ewwvu zd_jS8@4+~Lm98*_<=Nrxu^olNRC)pP)3usUrx%Rx?HEVuHJ^pN)=nVGrYGx%0K;yx zzW*51kMi_ocjrHllzqmGS9hnIaMJAR2E8A-Z>4E2>(q~=z8zXx*KFa5nq z-wiPg$-3@8Rg=B%Orl%!+D{-KGliB$$Uc7doPAGhKajFE6zef{m4_)-Zx(5Q`=i&4)5oc~`er_p-hDx;273v-L5F?@|3%q`d3qv~F2)PTBO;AhUh#))3* zMBhiW2Hyks3tu--KFnmKRe#gpC&xKqwcU?zDzZ* zc+qzU98dteeCw~druw4!bFR6@S6;>DH|g(;u!|vme`>bRo1R?_XZo2sd>_5i_e1!C zsnr3oxT?;_uOR`tW)pxVa@9Yx)*_1fUeM>7f=au>^;_XLz2{!ncbtf?t ztX{9M_Un8$JN_zM?#^;@3g>0`s`-6$cH61>WNH?L%9^C|D%30AWx!@A&bG(8I}b^7 z0nG1{QzdEFgG%~WQxe?3%;=$9*f?`-TT1eDi?nPbCU2D(3qa`A{?smsODJZM zFZFxP{c@7?9$RuAZ_CR+yF2exN80;T8-FbT5`PIuV<&3>h^w=U07v_$M5@Gk=B199 zejM&gw;Saamhz5u=Qk4F#q|AWv}& zD|`P(U?Mk+`Zicg9}s4kLFd6EG?rSAz(BM~eLBSkyvdsm(DH)vf*a20>duUFtv^nU zBH?6r)n;Gt0G$@_^}IRUdXZ&$b>U=*%&(XNOt%#^=-{nwuw znY|Q7qXta3*{!+3G*5SuJdnH|dPYHmOIt(Y*HotOml*M|`?pN)EM9||g7o{F!KalSI(1k3CN4yV1U7DPK z>cjwikNwa^+N8shXs`9TOF&C-i$7i1%k4PUeZQc2!Pl5_?6U48?6qennZ|x^`8&%! zsK>sZKM${*VsS$Lv?70I#%b&@eY^3KW|tB0vLU+^5lX+$P2cc|Ykp?h2bC$#UA*%vY8BZ*ZF7?|K7g-q zbc{v1-h#^Vk5=vw@v)N|DNx3dj>?in0z{Qm=uNRgK7|%5R862!>mFAUXi=b%K)V7F z24)9Y6>cHC#tFx*JAoXI);>%nw7a|5CFt_^+Nnuo!b+__5##txh7P_b5<;I{t7x$% zZX;1o%%eDe`eqZa1Eq9z;d8RBmp{Mqul`_{dKE-4-n^;r>0w^#p2v&PE79qV{B)Y` zzU3iGo|}$;0;1VSGp)q>DO>4uj*jZ+D0k<3BoGJrwqgH?twuRGWS#!LAXtccf$)+V z@#Te*U(0^(yuadIB+~Z>ek3-RsgI+Q=KL<-BZ%QfhGRD8+{mbH4TuvGLd#6DfmFWf~(kHt9pi8rg^fyW|u`ceNvxo-{D6crT>`$iuIUfPubhFh?>j4Qu zkim_6w#4CjwRcQ^2GUK7#R)L@@?_?{_}om z2rRKLb9I0D&gEaqtlxunlYD2GFW5h2tFPy+;c&OViK=0DGcn`tw+_)8-qep&sxSB_ zhQq5OQT^$_TiKtit=n`8t`xQC^8cYUrI3*OBNejpae)fhS6r2i z^2TW|v+52ZBv1AYozo1?b=Ylg3qpytBIMhIAu}4EM=YAv*IQ=5S7CDFRc_8M1bj%3 z^fb$`WKoMhJ=>GML-SoN(w5+RlPijcxjRoGnC>W2MEUH=?#yUHu%wNm;PYlrci((i z@b=CwCSEUo!V7Pb18r~-^wv_VqK~z|EgD%zNHQ&^@(zA8Pxx(dp@4EaPbO`WHWg%bB2n!S;NJB7 z$>|%%=-mee?pspiNdLxISAHNGGRj2X@lL-Z;+~6#-S=-T-?`#FT0e`i;%6!u+|u*W z5Npv+-yMO1Z4lh_tn7r&ILet@z?6(Nur7DzJzk4m1u8zUqH4Wr^0=_z{6KKpbRk{2 z-zwd!Wxkc3>{9gB9A5(6G({-y`xoc}$o};nBouQr&DFTH!reIxEJ~7!{%tHApa8pF zq+dpQP1s7A#2i_|U`XAhljRb2Q)#41*al?0eUrC}{+tsnh0WVBqvWFab-aDrdHVt7 zDbrXc2VpLHn%wEy%1Tgv<~-Am)G;&9J{v@Ei{SZ zyX>d>r!|utwqm<^v^B;XiL)O?@4C~pg&1U)rj3uY&k@OWw`S@;l+1pC2ypPtPSa+k zR(`HhHri7{z@ez$VzRkAL#9Xitsg6w#sZX-US%WzR6mEeT0?;EV3YWc_=_*o*)v`~ z#~o1QJihelnpb=&y?jwuf5Kz$N0t&k*}9&c_`3ROvSt*$+zJNn6g&8JI7F}H~m|qx8<~`{_RR~rHk!EB1*!G zAjU4j0{oeS5M4VD3^pi(KgQc=#>1c;#of8cBtB&Q;2MWF&al0AF3r~bc9b=wpLbU2k1>5aZDH>_@yD=wD;sM-Gpdh2XO& zzAThK5kF2-^|9G!*%hnMD966bqPcBfs7mz=80pzuo~J({vvut|=3BTQ`V(C7`>+Rt zh}}FvnT1TSJ6|9iNHfoTY()fq#2n0*`TXR|bpY#N-zkIZDfaveo9T)w2FS;{?C2$w zUE7Wye_c%KU$J2Ut&gBHN652J17pMw)rT~0K=DYNiXO^^xYiJb1Mv6ty=cw; zu|YBX>L`26s=bRqifrFQ&FDU2StFIeIYfWu7Cib0vq?x6iQOV{4g5bU0D>z(@C2|( zX`jfBQ)sS!pKi=beJAC{uM}r5*Qnm2dHlTev{#H7_n`F`n_>#AMDlyAs@JDG__}%Z3wl{VbQ*YluKuMp#oIP?OA{|2%-S z+8%GkA-i6z4CE~r5e3bQ8r7xop{4iw_1^%0xWSn-C_^)&y!!w z>n!sk{uVC`Uqz9cP+(mJ%p~$GH(}g zlMw6lW~KM)9&c*3$pmX!t@l~&$g(bHYL<60lDq z`kk|14AX&`t#gG*1($xk;>*lIsGYLvjfQv0pG!9^e3 z6+Wi#*Nz@Aj|*Njg`JnFV;;+V^*_LZ`Tl}p)78cP^r+OhJ1WyZ6J$1Nyt49%Y%|TZ zXV=*vLD-QQKHlV0{np+8EV@A+S^rEZs}+#k{G0Q;1NfZsn!%?pvsNpWTyMSEpwi}F zu;@IC@WA{%zEt^R3#`4blG$AD5x>@#SucCFueU=5>5rf~*aVYr9iDPHv!;>fvhJSj zaC_PE<2&qS%U>=gbt+k8-ohe=>>tS6Z)x|hakb!U_@RbfUVAPVNFcg|<~(hJ^6$4e8V;O6}#nflogXV)ls%2)&i&petk*-286_hM~lA% zp`U*TyoDS3E2*BfEO;&K$vLw>4h)p$c#^$`sP7ePIW-Qpj{f6YHmP?98n|k&PXr`8 ziU2Q_;BN_}-UH&ihIf`sCzX9}-u)n(p_j2CV{0LI*cJA?Rot_C{OH5P^&9s{&s#;K z52t2->@Po%;Qr}N-L!{#({rb%V`SM}nA+w|ZR^P%=k4h}zNgz=$?9|JK-sqR+>eLP z^$>XiyCdH1d1rXf6Qe52ddlAA@q!s#NS1im2yjjVdmp~z%x_=7P52kBg(H_%rWX}f za#MX}+BYWcD^53#lNBYsXneY2LM004xJqsnfQ1A~CZu|$WTJnTND)Quozch1Ea7ub zx@1&pSE?`dbY<#^s?>8;sh7Q}_fuO_+fq+*vq#U9pXu2)(mQcq+4j_vJ)1|#JG5is z%avts7i^z3yl`adJ%6&hu;6g&P|uUYdY(PLvS4>r>Xot&Q-`W1zThqB>FGVL?2nZx zGVGZ6US-*yf)5L}bB~djOCp)tY=}avqhNb#6c6JH4y5K35*S}uuroEMh|q*e-pv_9 z$WsYU<`feuQD7W_$puzw&UgZ6C^_~HyUzxsSK>sZmijtJAsCRY#ovRM9Yqh8##@da zs(qPVkGr)vt0?<$w4K zznc617l?dODDLf?M+ErC#=P%>vsRXiVx!KljM=Jb5C` zIl(`1pRbJNS2hl9{+ts!w8J;?|eTYcp-U2cx)*;tn=1APfqal^!_8)JkLwL z;w$@*xOo#_@E7zDdy22@kAW0fDd4?8*&biPhm_$@9`-DjX#RZgP4rsv&h5?E&=)n+Xa61PrP^(G>7V%&TByiCt;prkx z(auoP6xrpI=HuU$#ffpr1)1E{%>p@xCfpCsZ6yf&#ZSx>o+Rc3r zfy|5;7X*Hr$xZ!Qh`NdavMZ2!-Bv;E3$UdQZ5d`J9@no$6qJ9I_yd*DzbY zn5!4Hm)iauj+Cr>Zk77cePMvAKJ)^EC|N$7p%)&oE}(Q)q}b=;r1FdY`?0rg(S< zjKJX2zy25hX8-w9kk}vTBQ7Y|?mx6!w{JZ6HeW0G9<0U~9alf8fUJ?52$(ClovlTm z{|;kJ7rAus0+ep{x*x1Ou^%4bD}S+V4Btl>bE3EB^`gqr+qiPSZ8Q;q6AO6qGI{OE zo;ZgDpP9X8%qaVLj5qoE`A%G5RDpK`FayDhZN>Kckwe}O%e{Z5tth$sd{s7F4BVHw zU^uLWp6nSudre>zt8_2AS6{>M2o&^g9ff2*hJKb?vtZUYu=CM+K4Y{Z?gNIj&EVeU z-AIs0(-Y?7V%|q7l}%sg6W15W;hR~{On2w^L7)4^=j2F#X zQ#i(aEF*J)q$#w}Tj)os>XwD%4zhtr_a=8`=JH1ov)+!6xL3Q8=#2NS83db5aC_N4 zWcQ5GZKrSz{ORt_USbKIS&3@ku6nk@{k_L4-J9kVRAm-D%1tVEDYAbPahLrx&3?if z)m=yoMa`g~TZo-;W>xBd8E#eXs$O@Mg;E6kvvpEx#?1KFD=E~yX{TMxCp4Z2r_e8v zou}=5Eyk32qRRZHDYG*5KA`PdTg6nF(tMOQoYE>PGmVb|E5+#sanTqt6sM=%_7gCw zyiZ2Anesj)RxrK~c)QkCbaLU8_BnZbc8@_X`SZx0-6vL#?w-eKv(Y;%NAFDa^kj=? ztr;_hMz~jB#e`{IswaCbzTqF>QqdHSkROIoY>O z?ha~oCHuVD$tHWJ9xlBln zVXCO$3RCmgZXV%>-iOTd2va)G_T$e7;L~__)I(qD4{(O|JVlTl0MdYmPUbYgr3%aT zA^eNm8ZIl1vcjKwW8*|((I}ZKabI)AFxexRfd)!0wyuWwwRUv*QE7%-mG+xNR4gTP zylxiet}chy_1Z5vyk=ILqzN|;YQnQXSbJ^@shwTlFC5IihV0yag(4}7b5{qr=zGZN zKf^iu{@tp)SzTIT_+4&%Gq_jny@SS>YpU|_VlS-=HQ+$(O;g>@Un{V_;my(4cKxd1 zA$IM^Dug=V31rUr8>R3v_I~q>bN_bH&lEk`w|?a%CtQ4UuL8eG|u6T@O`|H;`EhULst5Z1YclW*Wz+_gfQK%l9)m$Xro@h-kBD^}K@K zz?99VH#V58GIAr>u`;M3#a26Q6%J8zB=3_Sp0l-bTt$aJbHm96?$tk_ws})_vqLvi zeU5cQinPoU+Bay$s~-Ex+h%F}`L~nVqBR_K``~Z_)y7!D*Rpj&qQ8ibZm{8-MKtCC zx>y{})m@l+W=-Rfo_EHt@%2}%Y56$yOwT*T1a$Xs;w5mIUS|y7gZ;V$6;{~K8wmAl zbC8{H?OCHfHrAfcQ89LpZmrO@ki(^`{3_&B%UPT~moB%*C;F2i5ips3iBVwp|BY7V zw+H)Q^ToM?J;`M>i&dx;q`V$PMat_yl%%}=o1+61y>l9sZRq(9BY#CUt9g|>KlZ*P zvNVupR0KZQb#frX@iCTrPweBXP8}*m776J9=d;0~(f#0O*DM_2F&&YrYUJx~6^YmE zv7&U=sQ2iIRaJ|nL9^M}fI;R2=c|AV_Ts1tcH`ekZtF*RviZ>fe6lng4WGMnyJ$Q; zr;*#q78_U_MBSTpG4nrB`lf77y@=t8gPEz# zXs}xg$GXZ7#NHQt6(nM@TJ#)XdkuG64czw@zf@;{*NgbfVK05KDtUx8*&9ysa0PY` z{4&*(Jj~Usn@MtCp}Xr;K-5~W`2PBHaL9rVtW54Xn~io0$}&}p3`HN4o*h`awPPrS zM*H&Mlse5!1hoO0?#Yf{Gxy`P?_=b}nz^44Saa>)32Kb@9A7|+Pj5TB*!V=qyO*=)~cL`)?kKS#BS-8CATi7#BTP=iYM}K^!KgE90 zx2&64TfyK#hg@0G(pS8e1p`I@!H&LoquB=He1irx+=`eY^u@6R_ayGOA~%T(u>8aM zi%-OU)|Cj5K`!!nxX2n}9FkX_>Ey9Vf4dbRoY!PqU(fA7ltf&$_kp8ZdLI#D{+Ktr zS#EKRoC_IjoRT*(!Dqspad>(j*Qg|qRJd=_7l8O=sHN|La2etZ8F1m~tZ+HZiV*Sa z(s1||CUTwwCU&6~&lhS>_hI6gX5!YBRCD>2?i^k0p0co{#XaTDk`5qqPr1izpR@U0 zN9otZCOW=)rO_VCwhgV>V1WYCap#;Wr*!dw6Q;&roXi9~juyUCANDIxs$S^eTNt^?q7kv4|DP zGC031p&)%_q5|uSo_P3u=`6?8SI)cl$xbOVj=pmG;dMu(!Z`ZMyI=eKH92i&x^Mk+ zH@^Ar(rEOy!ngjk$k$KLDK|df`X!HeKazr@x7EJ&%OpLihz6{n1VvTI@v4?Uy5Bkf=$79M1=nzfBx_hrGGx|?fBYQFWk1st|W-`VgTG5MZ zT8?0snvULt=7R<2MV?9teqaYD6J&y|SP#LE?BIBUSe_N@C``{L?z2f=-8w+>iEl#g z>i#^1X+U3EY5iuU888C$5F2$ioIpx_)$0%o1=+%!+{o9D?tv(6K6#r}!Y~_3Z+=~` zdnpvBy);84f$WYVwxRs-mwEj0Zjm0^EYk%xTskMW_QNZIg%1LD0GfMsg%UAT^~8$5 z2Ky$UfGt2@xB=*h?&{_>?}&gw;vz?w6BD?nq=Q!kI448EJ;hE-#BWRPHW4?Q?j_>k z60r&QlyxP$jelp!0ps6OB7?1a$}dZbjsM#ckMSQaDV2X(g{$Kn_-k)LM=AVOJ4XK~ z{<^7y++wk}+#sCWN7#Nz4yqb}9kV+NI!a0G0O-gv9&OOM@QbhwJpl)5E_~y`fp}~+ zTyYUxaWP!6u^P^}81CF+{cMFQ7H1aP{`isUdTal;;LP3BX#I^)4zSPKfZ5m?V9o=$ zv2n6V*{IjX3;_o<4v0dJ0a5rNz{gs0a0*kzu!0UBH_-Bg0Tq|sHb+CwQN#{va*thO z`fTjlyUo)b>L1JPwBt)aZw~;G+TZ|y|2oiq}XsW=eDfg5cN?Njaw&wW`yNMl+xoaY{x(|oEI)eunLX00_O3B` zwG59TnmHa8-662GVPp08>%pD)tcbCC5tRx#Ng0X`X5}U+wo|;DSRISU0kl$(!1&RePQ9nqwf{psFxZjFF`R6uLXL9;d#;;2r0DMP>$@$5FIymTSo z@GLxs4@2$GR`F_(-lW)0ZwE6Qi8j&&1C8^^kHqEDZ2`P8wLOpL+w+LjTUrJyvOZeM zbsV&#sBg3QRXX8Hl>yhsfc3GN0o!__`*-n^j?@!*B>Na_-mK zYSaIV);-tf!IQ7=Y@_{o1m9V*o(SYx`eDPnjmonYYCv2Wt*4VP8`L=7rWKr`DvpAz z>((~bANLe(b9aTzYt$qiWbq#CJ>T8MWr*bF`{b?MUCV{gSW!4nW&Ng&{*Z$BRo4a-SSO!-WtHg4 z5|4l{@N&{X$MHB!#w372Bog$9=*G`uwM(ZP#+9T-YI}FnVSAs8Hp&=EFEvzO!H^`t zu0mY82%@eMdCx1xxzvMm75g0HU&o%3I^gKStoWH3_^GDI#AWvSuRlF*tG{gF;}{?i zZ;ZRdK5fnOmhVbDCc97ztJv|Y*cw^kW5-HSg{}V(RRUxd{oo#ZXNkU4;U0TW$?L}dWy!n7 z|7{6J4qVn3u&ju=UciHT-NQ?C5NAN{vW7YDzrcH{&cT^`@6=dey^K{v<;cErta3Iw z?_cKqBic2_TH2dU>N2g*9V^Ega(L~76QX0kM8iQ19S0yH5=OmXcCQ$xlVxNGXNJI`|IwN2dMTUVdv#z9rceLVeJXE@yOFE3d&XAE+XrN9^ zJ{EkIeL`$Zav#>?^B`jMdhbIvKkhW-GRTrc(61<}GPN^D!tk;R*TxCd=1mul^_CZ& z82i$Ie0Q%Fzt{362D6Xdo#*hBOV+xFCNTMCxGopPbE;Os;=VQ3_ZUG2pN_pwcj2W)6U(_>0Y^XuUwr}V7`7vz${rVo9z5*Q&!R)Lb2^`(Om0-p64QvA#^(_l5V@XfU z(j=z>)@S|vpX``2NE~B7F4lhcST2^h&@3LyT3={?YvN>>eEY!uuH4C`m#r-fQ}C+x z*y|DI_Nl+S9>F)1%j?&jeXm+220VLxAo~rl;^;F5-a&bk-0RB|Mws!PN%sm!Le?bByJHGxX2Zy_`yMWK zudXo>*yDBUR_Yaax0PUbv$Nf;=c8d;t60!0Ja6N_q^E8~E)+iW8HmZ}zJK$SkGz|X zQ@F?aq9)cweG78-;^2V(>u0=~`3EsHKAC#9=fmO2w?=u(Us!Q6IW`oDrqSp| zxTbvY{OZJi#a&UCQo|%*E zPmSX|Y)gN?t^H-rei`ktKDBTJFpgu(>}07wIw zv#%>RyhWR1Nx{7o2dy1c|dn=!whGRr9mM3Yh>vg<1gPI5Bk&Ru;&>A z!7gh8x$FUleS`hqUY)O8Jy2BQQ9hkKCVmdCJ6>jQOe8#h&-|GAihIC0E`WTKr+^G!*6Xo>Pm`E;FF}+{oTpE z)p;~iS>khs{jW%o`+~?%6*j~EU50(Bd$qYAHua%DwR_VT^KRx>Sgx>sz^PSuSQ`w# zQ1ewL&JYHHyg9RBtnRT35C>OWY)wYCIQ+PEqKN2oOm`{btgW*=!?+%;j?%duDk4v# z1QwOsMQDHdCvQG#50jUyX&`Ap|IcmhUA1>NMdY>AHkLV!{f^;r`lcw~e=y-sxb_sP zevSlY`2)=f2&R1C>%E{+!DNrK3bJZ>T|du!?~r`n)L&V0UL!q(%{LVYlaL3esdPY_WnU z?A~m2F8A13;Pk?asgG~%jr}bCRp^vg6k9=$Ei=0QO_hM;-<;}1e4hv-a9FuGWc@xD zeWTK4zJ(5R(7Nd~yN9kzSJhRff)N2(0mzP$xJZckKmYvNxpJ-mf5^`2jb-t~riEK};}N-(vo zSOHYJw@iDq1GE~9?k&_B2X6Bo7 z{e0=F5)P1~cioqjKEJEK{WI1hV6At!P^ioQ9Q@_pFB^8n7VC!tDF)sT%rCS-2=zp> zjJrWs9>xqPvE+`-0oU<~lJSg0yVMlr7;cQo`*kh>ENUON5{mXYnz1 zX+*HpH?5tGa6e{Z0x2I=s~!{71K6@z!;97_6fvN`ivNi_r_bNus$iUr35#2sLjxUT zb{YQ2)u^Bp;}|FLSLzy%_!#TY*MiwuaNER{MGjODILRgZYBzX(C^A_f6ai(nq_}pJD#UIcula=rTIU z^jg^ybeeTLNTL(iqPDjn(X~nBrSb0IztAYk?yjFuI%EEByu3@qbgH@70RwqxS8pXu zt)@G3wGN?`$NxvP@_6|1d|EjGU4YhGcfd)qmjNVrDm$1wJQA_L_0VfsA5qq4Xv|D4uVRSIR@TgT%F{iDu0OkqDa71` z#(_4jYq>4Rs*NIzhB<^riahE#eb|jD47AErp?{N-a*bI(7w@Jof;{(Iud^%Gm)bkC z-;In}En3pS^X>lh>QWaMIi%j1m$`pBA=p%Zby4|FJ_|~kN7d_P`_KX300QoI_%>M6 z++P*cuidE9yy=TdSjd_{&Rl6zUhc0h1|Rba9*6AcNMG>Pt(_B;$z{D&2PC4^Ri7Lo z`-+Xe^`5fQGS7mgVc$mI!iCjmmQ5}5oz+=VL~`F*>r7p~(c94o4ZAmL9*rIp9xJ8h z5tAo8(1}I&>toS)G#HJv`ZmUcjp617Pqj+cmseDBvHa276F;wC^>B%YhvSb+`~dCs zlUk#lNd+!VR6Wek7pxw~ zp6&7V7}kcdx!dYsB*XVM(h559P3vxmk8;0=)I&;)A7p)Bf`fU)_nh-ieY?nJ{hI9T z=g?@iS>Y4b2|$xa{EmEZHWnND=jzfSO)8=?K?%Rmnp?l6OW>uI^Z^t)EDAtjYPj_W zTFpGdnrCP-cZIFH^J!9P)7>y@IM6VNiuAEcYiq6jU^USsuBwI7dxfQjvK^bW1qR!z z^#v8ls7s$^y+u$8BcB|D!98KnuwoM27!JqCgq00aP8eJiYj$An!d$ByV&KPHF_p)C zw`9?1Hn&3@Z+%>2Vx_#p*KKXtT1qQy&ffPENAGs@=hxB>&j0K;T*FNhk(&WkOWitjTq0#R1qbT9MYpAw&mZ1c( za(ljHWc|xl2xuLO_+8!rLSG%Qr35l}B48;akM9S{UrFqTO-xTsE6E#HovcIYi>1as z`(uchuUT`K))8~j7Iq|!I99fvPHyX1Q^^|6=V%Kn7vmWN@p0C_0%&TB^;5i_KNq`y z*FAcRKl#aW_f3@P@~=XplsuTj1KblWd*Ts$Vz_Y>=&kSRF4{Dbz@sDdgbn5k>kA2` zUe(zuPtQJ9?<0kt)XpBOcunOD&zc*idDdJx&ZGVQSLmeTWfx{B~4u*~VP^byl>n*UbEsk7|3=>% zpaHu2*!Hv^QE&RB)0oO3K{Vl9N5rN@0B@hXJDbkT-II77uX3NQ|JjwwvER2IuwA7I z`d5mZ9u&|3X8?;tO0G6+xl^}#Z&dpki8Xd+tH^%WrHg8GtD1*2jN`{guGd|sx+AT4 z)0v7wskr$nDA=6eXg%ylgtxPN3SxTlJ)JF2o(}E8pT?y+BE)u(9?v74o|) z^%_9EP=#k+=9gSQ!-Z8yji;%QtK8d|vFXMyMT1rncXCxt0g8vLimV>dAN%`@Z5w+P zdHkujHfg+SEf>9)J?=-W0{TKDf^Yj&xUAb$Ctq;#u9?k##=j*noPGcf#()E_IS*pf zBj>>$^->VWIFcW^;}hKvUR=<#r)c!{bSaZX;&+1GE zV|%1Yy{2;9iApy%`O%5)u2!0DY`$+XL?^qfEtrK+q0aZBrvrr%Ycdb!SnyOL;ex)Q zm#lH0>Ek2TSCc-guddgx^`n;ylSb(qKjg`yd(DchAAA!;Y3bZrOGrA(8hoyB>$}A><{#??sKrtGl56PP=)pE6>z~3m%hoGpK6@(iMYRZ1&#>40h--o?H(QIO;+)W z^Se1aK``3-bY^Dndf+jjhY1MHfE^Hx*ymK z`I@g?i}F4p83wm(8=zSpUb`RsdbXTebNt-Q|Ii1TwHF9WJnD7w{DQd8m+mrX%lu3< z30C^6SxL9!^x)w}vm)#2%PBs+e7tq30@OE8e$x3Qg!EH=d)vM;aL)%It4dp%U41{X zrwNX}C4FRgdX%%#I**;?y$?8_0yoyngYi;;1l$C>CJtHS)krEet8$$0?zzecRX)Gl zOq~vXd2cF}R%maS?f?=qKc(Ss~tkLF_&#j z?sl)Kx|h&HYpQ;p+`V$f3i}F*fP2#c`#{o+mF~{tA-F(!;*Qvb9m{{th1YAz?Q*Y~ zPc-J&_@%5t^qn9+;JbsR>3QWx+BiO6bsrW~fS}gEln>`-rg6B>0B5E$D_^j+;wnRr zD%QQ`1bVAu`Mt=crzjbq?wv8(-FY|Rm9u9Q#7~$};d*u zY#WeFELw^mWxbdXJ&H;QPmx7>wW2~1gS5BQp)`!VFm!Z zNqi3t+&Y{Zf5Fzu(ju3aEPdZ|#!up5;a9SN_6;^nTTQyO+nQ5HRo(o0yk^Y6@Hj#= z-aA@xTWoJLy9qd==pDT^dzTp_6_j=9+6yz&KBuy!7dQpyI*#otTS*y6U%K`J_om8| zHsUTk=@Ff=-fn^q_3SBjf)5+MnyOlxz1$SuL2)3(hFkbM3T{jmI<{0Vz#j(pk9Z9P zRcJUs4wT*Vf(Nn(8QF}J^?3bR-2>>*d-_sv_^!RWgtfDd-8tD>lh)J=wwYw?VdBNw zQz0jS*&EU0TlKn&byRd^U-=7so;atu-CS~*X{@U+Tfa74wU!-0+fr2za!JAd@u?5{ zu)b8%j+|a|(t|LB`v!EIt%*0X8>x1Z=Fz?>=9`oweaS%KVNjX4k5w3Y+Io-`IVfiu z_tpc|>%Mer5t_%Qg)qcla5f~6`b+jM3bC$UMEeFe*W~es(_jdRQ#Y6{%AAxU=cdts zoQ)txG!ATrGk8D4$kfsj?rw0R2aB}%;X&_Z_5~O^L4g8lwuoQ4z}@vn%4C(#jP>7} z@Ih|L1!b9;r&1@2BG${_7P-QPwpzPZ3HC!)?_ktZCh9Hguj?e<;w^skSSDnDivN?- zZ>e2|d0Ail?m#hjkVjum;wy5y#bl?ilteJ7yhJoZO@H{%h%PMT)|2dfQmQYozlF>B zEoU>GGv46jcKKVrGf@6?%J2KRV`+YhyxvDXhMKJ13F06AG``KT5`%&j1_k<9K)emK zSYN-HLNhaWe%?mKv#EhPUg$6Y+I7zvtovc&1#R7mfi_KZ+Eg&urh}K*spbPwu1U5X z%7I#6!E&JfvY>uBU%utwjbE>AK)@Oktlv!=SQ{>}Vg2GDtdnh6t>VF`lN>M~Sv~;f z*$$ZBM8<$sq5dKV%zIgT9RSnrR|n4QAe=XnsP84CFWc++xwW|gDZ|oSVx@%R^|>2X z0KZqNyUQ8}Aoda*-^oKKy$5oEo_uBIK-HTDo93X#RK5M0{q_rft}nHgVG7jEDM+-` z>5`lFe8I-2`ocmNGyJ6Qb^E@UzL#i3r|LEGGTA#K**{__s~{)+=wh&!_a!Fy*@%B2 zZeYI1^Vo4ipN~K4{a25AKJKXJKGZpV@96fE@y+-=)~q5qbN4I27yn0NXqQ1q+M=^; z@GWVIz*NEX0{mHTnvNQAKRG~;EG?Jl{-ffJ$5RBC4-E2yHDi;TnWps=bbPok@t&0- zBUAdWksn`Z2!V5#JOD{AF)o{FHTPAw}+6WIztVADPcq&Gf8C3YT@e z!08<^!O5*Y0oV?eG<5q%g~2~d*c9;|D?2LUcu{mw_WgxM4jk(~8pj4xO{Pc4l&99@ zRyyOShy`&s=X)xQosw@_|59yQdKy#$E}6yUaCt7^Rm&h?;A7=2x5{Y{f9!Qm)|0L% z?R(JrF%A7RKXKq|0lv>44PT?N3LFEz=P%BOuW=B*`M}rmKY|Zf**lD@{jm0C7uIAA ztnRTvR=k!}_x;p*n~DbMLG)+fwa*m+^0h3O=b^N-U$fAq!ykDO=2> z?2M}5`7#gA)mkX4*JE=vXxCP-3ayc`YQ~;&t&z3pK#*{)ZS2zXteqE`rfUGR>Z9rg zTR#IEzyrkO?D4d2npUCN%4hn=J@zb~*pBEP`z`IGW`m-8Y^$D1`+jX5q0|4%{t^8w ze`!c#{~P)lZjY4zyYzGQG2vqjE%K)h1Kw*pj}4wzJG*D7BhCTSc1NK75Oz8N>x#X5 zd&ugfb@e=W^hoiIPYr_+klCUw)>HIF9>!P?HS1~ZI!TtEIsa&Q9CE&n9jyM;dq&4N zSm9o`wW8=i;!4(KS)~7kFXZ2nPjH8U6Ys0r_aKH(V zja#h8Kz0s3n-(ttHp5W+fn!)^N(F&^Qe+;o55%^8aIg{jl{8kmgZ$PTw};?L+Y2{0FJS&qE@% zpw+=OpZ4DN$1j`L#Tx1XG-p7xN&LM80Y|!bgSW;`o>s=FFoR~+$zZV!Ku0aV*$Tu{#LJVM0u&Y zn~QrmO&mB0(-e1ols~_87gqmn^4MBQzOpsY|2dlGkQs6xu>be(e=+d?6$}&@gCAeH zIB?ewzvHu99=9!=ybr-K=PHGZluT&7PWgJk-<@ZyiW0fOF~B zIpyZ1udfM560y+G^b13+rrj-}SZla7PNQsCX<4qKR?pIKywTH|sBI0#!Y!)1bpSzo zesr^EHU)#rc+?Ya4#&eak?{2)&-{xPEWE@M3D?GIV#|(m4NVt}g=*p2%@G%|n} z(DxIMx2{foF@QG}tyG}TY2T1qYw8>XQ_6w6)@3}iRJ=;ahuLmLeK-;i#q#=LNJ$P{ z`Pm%E_T1U!S&)YTkDU|>N(6(U*4Fw&BtkQ(|Cakb0fR{aP#=vsqykZSCeMn;BB#$% zb3*Om_>|+0BmH;M9(4i;Z)%BzAf=;U^ArXNCcwXvo4Re zL@+9;{G41ZpMGh8`c(8}(eAP-$GJQ z^XIts{NUd_mHq|!3D*7AQ+3HD7hM9W-R8M;{)O`|`o?@icJrgo@Pj-J8Ra8sl7<5i zLN~WNG<%80s;3%yGaYlBYvzCPcbu!5;neCG+N)FP)upYi=bm|HbF?)co7xm@a-Izn zm>Q|6X^tnF8^W=v&7t^U(y5VXB(L}EzBEh%(qlw?iZGVYSFNr{xG5ZWk@`5%!@V0k zvm&9IX3<`v#qRh|QEnvKDuyMJw%e+)<*9=RW6@=UtPE~);C#abT_qJqn0;oM_2ho< z9QB-w&-t$%_5K;>`PcXdDW?VF&tiVn{0>~&-(P`W>V)m28&VWU?KNytK!9|99i4H!-PnTDxmfoof9~ zhR3?%u|&vKUlVB!*`(>X7`XJO)hqL7Kkj#)ADH2CbrZGAYroyyWBZ3!F0k3R%ir9F z+^T~`v?SuLd7L7ME%VewBGDj{1Ys-T8LD&n&%DSJMOF@poF9rWjmDN7rn&t|3UeqS)>q9YwMAXyT1PCU>v}xyhaxmtVqv*9 z9IK?#v(NQt?;lL@x`YIe(=<~%@8&MJXuhYV26aI4%Wih=9ik%=4tkJ7o~AIsvD43G zG#5`}P3u5A;UkG)9982O@BEd=h(xqG#UA6OQPKX3(&FJJT2Rx}a*TXpkH?6P*EF;q zBN}x_vdrMR?5uM=^TMqL0nO3oV8}zJfj8CBZ+L<=kzgWX6G12zi^l9e`s!dG1smzP zP;*0Q;LWUD46?r^9D|sI)oJ9hnee5T1O}0sdo`HJkV9iMW`n3~L*GTB%?++gZC$}* z!z3D?B^rx1#A;d^>9|jku7N=mk)y3}9asq0hao_R%w<7R7=@R$h8Wp3wc$t@HdRv# zYmnO(!flmwz>CIe<;7z)LGzr5DMtczq{d7Hh^+Tk)iA$U~;!YJMRJjJ^Tn}%jnEF_aU}>lcQ)Po`U}LC;m~gB`lBOoy8X}qCnvq2Qxx=~d& zw=OjvlD!$A5DREL`0e44`WGdKQd^>tXoH?wLN(-RVG=GkX1cv47N(XMy#n%RlN=Ql zYfwS4CP5oRSCmT`F$qOHKQqQOvz zK{8@Y04L&fO(LFXq6gcMd;+))b+?Y_wy5Z0Y0VPi=r){CYgB+N#m<4dWND4)r#;;2 zs;#MAh7)WIMJSa3MTa0dxuJUSR;&K24S`aX4XS|=Wj_Sf*M^owRYW+rEGSq&SZx@5 z)tZ9CHc{1vK@(1#BExp}htkVIJ{E3hq*}YWSh!X1 zqj1GYSb-(NVl3KhGDlTCM~F0T@v(Q+#!SN!wIIV)o2Y}G;GzWL!NwvGP$EK86A_AK zW@uhC*O|m1lwx4bsv?2rXr6=uVI+ZOZ}6LFRhf3bB$k;(*I(}n*3?3}A^9{Lmm-7W z!L4{Eo^ECa(1g>(z>(L21J{xpgkltzS0|?-Dz}B^;lcWF6@jL)F2;<#tk(vr&YjCm{8v^ zTnw8Csz0%bLviE?!QDw2Y7*NGhEU}JoN&U#((BX!|2F_PN}y=AvqWxFi)gQ`fvbXHW1Ef^I;2y&>d89gKzg<}MxmsrFQMAe60W&i+$Rm_$UN+YuEA(6+M$Y3m7_EYURvHwc`H@O*#z3fwo7=+T6G5>S z97Q2Lm7+xj$3!3Exj2FbE^f*(t%1=fE@2voJQ7Jo6B4?3F(C>DXIi!_imVHY2g%jI z#;XUQSPfvpjZB1w0OlCg9;;bO#j%>}DH0-8qL8E?UPxtx=u>ei4W$_KKe??SKL$;J zpIB638!|W$-Gmu~)eQL>)3HQY;KdS6h9kt_m8x4@3QLZDm?B7*s3jGmTn3O}f-(~= zuxAbCL@Z3>9h z+#A*Yx*CY8PJ^>9goGq<2-e$*hfvoO1G-k}LQ+uWL9fQA$4qizjV9KGOsaYYz8>oB zR1Ax{5Tv0fjSO7W8WqX248k+d>D{wii^7H7@83}5MTTOPt;QvuEF#HG7U^&F#-Sx zvm%A7WMS%|4D>-9nceUj3`fRiF-z$pp(d0sR-~k+;6+i?6fjhcr>xBR4Q9fvLG(tw zZM9JuRu5q+!<;1FmcRsB3<}Zl>~0k%RZg4fnQ&V)W}v$sQm%`d$p9XzAXHNaOQ~bn z%fYAvcA`z<#LQ$&FGdl5%GC@*s1xU@i(+1rCj^@jgxkO<#8bnN=%Ro8r8pWlbud9H zLieQ>C=KMZ@F&L=0F|ks(cBNZ8Qe3PozsVnPvdDC8DXCe;!N zHK6XxH#oy*T4G1Ep*|~VSmnr!%&4e=yW>R>+IX-W#fBucFa#R`$!b*uqQi@7PGJ_W zTucRoSv)8Z+BRAnepGx66;cpGG|VnS%>b-Yn;SHu@ieGH%>ZR$uT|O25$XIPCNm8n zq?v{oPkk*J3_GF!RXGzG`vE!*H50K}!o&`tzN%)~Rn6n_cD5=Yr zWdsM|fFp{;6VI+k3*Z-2L~~pOTCZ7gJsem_tw*=v2hwn*!{UWCN31uKx_V|*NEsek zm{v#D15H9~s6GVYDw`}1I0`YdRSKcJ9%dKDLP|i2LA_Bx>Jeo1a7k*x3}C7cGXQvM zFl7sUtaAgMS?tDBZ{jM6kso+sObC3XjDhHSIG0IeqT@zCt`E1n>LbkJaD)&hDCEKH zEr$l-Ar0yyM$5-*A*^`_E{p-!Br)TqK9XR9glkHm*-_X`JuD5(!q4iZ(9}cd>LE>c za3}{ILZC%u`jtna414h!d>9a}nTXaihcN{hCCXT)c?a?cZUKz)M8L^EQo9xYRx0$&fNUmG;@jk_9{_O>sR zXEf;sRo{SqiAJj7k7s5W_>3$)qEgB;%&LKD0zajOVsJ!H4M=%CFj>M-V@L)+4F2%w zMOkm?cD#f*O9O}#Ei^Q$Ee&Duz6LS%hH!&eFYHHrm_=x8L3)fua2U}I%uMBo`0!K& z-A*kmjwu{&YGIf)M4||3Toe^t+K+2;(}4||n>L6L8lo&)D{~a;Y*4@AC_9585~;z* z_Cdw!KAJ1Z2{wdxq;{_5ts@d(h9e287>sk2(dMW%(%gB!c-Qw3A({+!HE$O26fGN zhyo@+5gfp7)PQY-F$(34(OOI|jf^$qJw`d+Fte_MpW|yJHOdCkh$%oZAit629~^Lu zqeUw`dIJ)%C!vj~OjLv#jw3CmkqJtp=&mt=jwe^*4o`WpbZHR_Uj{imz+=X35@;^R zgJN1`WOX$zgYDM2!pLzK*shVIb*5zm$bqh<`2y`kZb#%B284}|%C*5kBOy!&NF&7; z3xEzg3>6*NFIEl0?$@(;e?@f9?=0!!ANXc#4}&_57`v(*XzT8Se(v4L>2?3;Ma5S}SR=3T|NYQBPJC)SKgPg)3+kK~}) z2o_Tm@>i6^a}>u=6`te=o)NrZIF$?QtZ<9ihbQxn?O-mcj>}xv+J>8JYeeTf>4#uRty;jowT1Y@tbFJ(xxKfp`)jaiDIvX6|g+UnJ64w$$ zJ$BEiYl#LRP74mQit)BY^W-ITJ3kf2ifjYQDn6rb2{`1(#GhPh8V)iWZ)w=Iq#41o zq&W<0VqsCGum#E$slh}im%3q7()jR};Q%utss*Q+76UVr`8aAS49q-8YtnLUGp>{? zT&Pz$+iGxNI5@51@u=k{Es8fYe^W)Mre0x&4K7ShN~U;gBm_T&VD*zEiG;#NNkiwP zb6EUURC5F4ACHYXp(xWJ#bL;}nLuE2BGHF|a z16@%TIHNzkykPGWUxXSY{LpNb40WEU zM1xULu_Q>th$NZ?nwjfH678b#$TBpjR#y`?3W=H~DrKBf1Fm*7F&j|~0=cQ?TDq!9 z-O~j7qz>4Kx<@lckt{yuEnK6S;!AaHs*y6;1aGxH1~Lz_-s0Ic#x#fLDaQOxNtqtv z2qx2PjX_?iD6o$cLzBT1N}8}*H=#SQ{yKZig-78X|3C-ABop0Z@08NiL~j zhVUk+G_0u*z9a~qjXZQ9fR3tF#*~Ar0%F=!hTjV1!Izj9NiV@OMZo^0hD%pg;(zHCuCmCe$e*YZ=q?dU=Lio0b7tbB**A zW|MMS;3;^q#@C%}gQwg+9aF@!}~2tdtRhGRqwRfeHL4+CqUs3j!`_+NKM%O~^u97Ab;& z3R)FMRMa|xprBSn#SyU%iioIH(Q!eo;({}b)De|YG{4Vt&gZ5{nmW$!`+fcX_`T-7 z+WWrex#v7*d(L`q5{%y%ePGhEb0Ce_jTNbZtwZ@2r@V;)1x3=|y60fRfO!M5?=Gvx z{%wJQ{P+#o9>ht^(T#;E8ae=<^70eTuuZw+QG>5ry~bp~TBJ9@6H*E9m3`kr5L+g) z(!nfVk|eWkxr=QUS(UiGvM@I=OI6EVJaJWHF(?TQ_~mUZK#iAfSqNcb0`HZw7vrv~ zM#pQom30{I`SQ@igK+_s;E{g8gIPE-0hHr}9!Jh7ZJd!yoRtN5Fs1aug)K($t9Isq zIdY8$5(1c&N4gh}+DgZ{L@rfEK-m)okYK!|s~$gjWSH>H}E;FcA=< zcSpXlBZe6w)MK@W4%34%LQ?Ni+o?!bk=QCIH3G=M;gK1goY4q9C2E21DXGTOF%*sm z6MaZa3seR%c@abLlw#)(=VJMHi3XWZ;v|`q!9@1#Wy{Y~iuoaS5%4AqAnQ#}>HPU9 zH4LlhZvnMY1j3GyPT5-kWRBpG!9&i71cQZ0+?b8vgm9Qw$QgsNoaL4bZ2(3{oRE9j zL-x2ab5maMd{j~?yM(;(l}dAiMD$=Xh&*xx^T7OLm@pkD%e(Z(f>utB*glQWz#z{ow7dhFbyTUSn13D^o#rQpTW1o)Be0NIu0 zhS&)ocW zpc_TkfhasU$;2GXIK+le21r=d3gv;Kgq)9_N+#)|#wF7|oUt;4XY67l%lv?ZP^=Y@ zHyHr+6c)8D<&Mf$ojfQrcR)rZFP;D^wOA`6v94leZeEwF6Fg{kRzaw(8k9Ap7h5qX zSwQcc<3cu309YM>WrU;_V*}2pMe(Zkr~#Qp0ICN9WxG=LA7s7{<14@tS!_@(sBj^B zT>$3YD)~M%3zcG@yb^%q>R@;sL}^8{mZ)SFE}SQO{y?cphuRVGmSCtv&P(&>6h=3N@+p;`yzplnp?yOaid{mVbGxz#EY9)rZLNFTFOP)_p!FX1qSJ z93Q%Hxs6v$Dg^rMmrIGmC$j*YBqQio#V6jaz!V2`V`mN&d%#&<$^%htvd^W?P>5%# z>Qc=NeVA^Gs|3|8kWR@bubzko>{Md&-iHf}SW@h`K!1+M71-9nSr$L~<1qrPo3Z~d z|7d{%v1b4QWGfr##5=nvN?8pmW!Mr`O%yL6&4IL7jU1T!NIw7|A!2%HRp_>4=>?$F zr4Q4|!<^HF#9=}pJ(v%jkXEaf2Y8_bt1+MSafYu%&3FN49+wr)N@-9J7DpD^72Yk+|NbJy8 zf;vK{E;AtvT~JbrMHJ5RP#SxA(i;OJm#zb66(8osGDP^GP?TUnug;0*^2*ep-=ExHq-yG>rv7Sc7VI_%^EM#$3P28u(E1Y4( zIIA>bCk)qanbQE!AUiHTwZVxOqeUgs3h(8zpvGCA{`#; zaF+0RcLygiKiLk$Nz#N}6a-MiBF^&hEpcH(_wkR)O=58C~r+^=%umo0W&Bl{TGTy8*_ zpI;e-d}s_3Rql8QD^KC!k^;r+*Ah+{G?oQ;nL<>e*^7Fw$}}c|Dm3g|Hc7AnD|=i* zl{me5h9!#J3+O35C^I`i`a^z{Oo(_f(2GeUu#{^6n=Epcja^XfMf%W{;vW+zoaL=C zUqI#$ILjgnkbw*I;%SGX6c6SAcqptc&`(Pl$ zojOShUV?(>O4Tt`N?WK@WrvRnO5(ACg63*GQbVa>RUuEbebspKgfj}h+>n>oP!L!V zOBn%kaKc>FFB`n5HQ7bSV-^v>KhAh>zztND8mLG_fitv-HKGfYDK&tH8UWJhms0Y} zYR!+;1(e9UCzxlTIB>3zldRrl=Ak5VDPhrbN#pjH$irNmWmN>AdHQAZQ_iYG5Sx(% zN{4{wJScS7kGR#IiF_&n*QggPckwUVq!^Zb81wO#p5$7Mtyr7Mgb6O$v&9)hAQYi9 z#S8n`B~T9ZA<(Pdl@f!*%oosaZox3+2@{}tB$N-DGj_eOw!v9CNG#2zq_A|CxB5W8 zTCiehL|!psqwFx_khzE7t)>ltiWRNjk0+8abo4+tOE%?6fvA>eDheSCMzWa!sDj4crc_}ij10m`>8Wr=kV=*7N|Z{q z7+f_<4QUJ%BR*6#=6`rR0kzW004N-xY+B$fOAZi48o*95UP%Dt2}b}s#4_*3yiCnI zL3!U4@XHCI(Cz{i>ggEvOVA+(@P?kuz5>|f6{kn-iUmAaE}+N*SmcRXOa^h1rX9e; z7wE#%BS?Ih)*_6|5>THQ2GrDjo)hazzX1f$GtR>funT7yD{wAD(EunCydEt7@)U3$ zUV-)EtY1#SOKK8Y=AHBKmZW4E)j1E*V)`Ka2(nU=WhE%8U3ecFC)rn$3`%`~;=n`Y zG5`%y;wn{TIZr+hEXl(sLu4l!gjvEjT9O-Q6gxU8yk4aGa_neeh5#oX`k|CS6~yPn zrMyCdvzCh~&y$xY40(eU*XkuPY?Y%dpjKXsf>umOp}dkOB(xHbd~rhGBb}X`WQ|@a z2}F(K0k8PRCL?lPDW;8+M^5OFDlr6z6h(>tP#*FCQc-~98&EB{(v^>Ey=Fs~iPzc+ z;g;7zVVdfx1YWI0bSU3S^?U(mxs=ESw}UGWWs>JvHK%&Ic!nT6TylWtD^z zLST`CE(;JTx<8y`zXVW;mc<0@U$)`_buBvdL*Gg_Hry&@ijTAE>?-Bi5l&F-_DURT zN`bS)EbYD$%P&NN^^3H*O4Xs@ETyD|#A?|Gs+Lis8tn=xt9A$EAEPDC&@vxS!<{(e zxz~L3@^Sjw@AWIM>U7Ry1OB%5!W+lD?mE)v*0f9J zUN~yv;WvM2cxuN-H!Ruk(No_He=6hqEB`uuM9;<(p8l@OcQfyq-1G7E*Ij;Fk0s?F zzI#pY&0{Qa53YTr!}~kkp0Vw&T-tTj)-NXQynb-s&$k8N-L!5|L(pQOYiyOV86-3m#6PM^3=PlZrXkC zizmC*ZK>S%K&QR|%LOyt1HT!x^oxfo9$DrezyFt%=MOwwf7MetU6y{h^563|e_HhI z)G3#(O&qdqQ2Fk`n=U{5m$iG&jjR8{dSvG-i)X&@*IPDS`h7yv?tU9P-kyHz#&_M< z#WhVS*n6U63TddrIfw zIiD0fep9ZmqifUF%F)ktoIUTW$Nrg~^y*)ijJoK$Zr2a=-c}g*UDgAKUifpnMqz&<=x!;K)0$r z%MOnyJU!m>%Blfp7WDZ!xU=?~=db(ZA7$C=yI1et`qP8|-g!Ze_u#*(=I&nS?Em*S zE<1N`hrc$Q{mS;`Z=Ly%rq|zF^x@yD-m3U^@#IB6{Kb8m_mSe}6CYZ;=g%)MD(LuF z=YQ{PzxMJjz0!N1a#6zEUdtA>@AE_DM+0u}`-*+R=DkC9?0mI*$DQ|$&gz`F?xo^0 zQlB1k*=sxZznpdcwXWmq&Rab5@Xzm!-0XhMaoUXZ@vC~Km5J?%-HFYKy@{=for#T! zeTi*}U5QPJJ&7%e9f=Kz{fO;|-H6SIy@;)dorsNyeTZ#{U5HJHJ%}xc9f%D`{Y%|T zy-S@-eM?T*5i;*_o@7yuRRWRrZSALH2GiZXVT2w@fr|WTS zq;2rf&K*1JFMu$AEyMi%49s#d-?e39<3s)G1-%&^@m&G@9)VCiwlwTv72C4h#kL$- zkhltM@YNANfq_u1la5hdjsIb}G5TeU>^E^_zZ@f}U-D4&!B_V4T`lFI@~^+a0B?H+ zit!}^#YWE9Noo9E0RUe_U`!pGIvtz2=y0cwonoYB$)~2wPb^~Phg}pI7|hQx>raoG zS>uOETYn^4d&|wrp^u3Ai+0pKhR@dFzXAWX`1jzy2LGnN|6}{P5U+e*hz%tSedSQv zu2Xm2z-D24#E&oPt&7KJ-r%l137a8($af2b<3g1`mMA1MrzS(0)GR z!54qmfHS~aunepNYruMN4cGu~68QxP584Ofb9JBx?1XQatOspi12_z91T(;9Fb~Wg zg!sWca3$yg*9nu5UoiPXq{E8vpdCz14hD0UYYz7;_0bLRA2;>vY1FOV6G8lXbYycBa zfu2$Lo(a%48s#qTOHoc>4R{P}z6|Nbmyjl2j&y*@;4m;7%m6*$RbVaX0qenKU?W%u zHiO$hn;rQF?cgCW4?GUmfQj9~G5G8ySPK?{bzqgqQ(*_7k%s)73O(RxFdNJU8^*#v z*bLTy#yGSKVLCn|3wl7~G`R7DO}&Mg&3f?FGHy zaIgWtl(Y;qN@1U1E!Y4yflXlYY{b_a`oV5sHYmS!=mAHIdk*po=9Qy8gN6t7gRc&@ zgTuf)FavA^YsEbmNeMHiF5EkuMwc;QKa8gv-!pg0|~}!F^!u3g|x@?v=1xFz-f`8<@Nrb}DW#{v5+F zZbttB)`2x(J-7z+)S`UB+FQ}j^nv^~v`?`1_F!-en0E)#3D*1x<=PkF!CbHb^n>+x z;xp1qCfQBk92@W9qd^6XS9cN zp?3qqfyocyJ6gbOuukOQ`=I9$7Fd1yxjCKOnZh?O=`B9`xw)U&w3T(A}_0h8+yAJ_!egN;w1U4fphNH=Ia341vo@qx);-Zs=5Xgr1RpdDNY zHi30u&C}>_&O2}$PEe4L*%RQ zUxWAti7dmKSZIwmGH|&b|7#()S#UAVns|$4jJ3zjabv8u)$PYv2dp|F#hSeQ#5C*h zr5z?&?Qs*^b+itLD8)JeUf^|%HF1nJetbe2f;Z#8tUc@l)Vh#->dF*d6GYb}(Uobn zTRgEeNt%YEjJ|-L&%x+4jSZzKMf9XuJ#iairztI=48fN{N7eD)g1y_Dx+aCv)RI5y zs%aPZw|3T*?Z#Vc+fBBvZI@}SYd6Na3IFx&CRuTJnnab_D*GuIka0*Q9z}dTP7DSM zlmtZ$#-nWgkj2NrfdXq)#%WS6OoQDrHf9lLBq;s4&^7!de49G;OSzXowhXeLMF#z= zEGgC=%i~h4wx#VYxponoK}miuaa_F-agGbVCf0zQpX8M-hec# z4P~f}J1rs3Dl+&B$+D!(hU5PW=v;XU<{VsI-pMB@Pb+Ta&cV0DPB8M59{vi7jG9*|**8}io!vTl%x4at#= z|ACMtLiV-@RQ(`swqbN~mPa}&>(ecHOoGt^-trJ;2g0nAFd5c7%gr6F@#u>rEwb*h zpA`&VAop;HtQNAXAXE9HY&~QvAv4n={LvVD;KBmpDs>VDW2>=Jf0E+O5#Oxv|P1ASWDa?4Cp zWQd*;=vijNxGQ=li*2Wc%FeR5<1TBD%-yKDeKJnLa#K~WFa`}qw6$Lzw+gl*>8^*K zi-s8Y zMBf11d&#_qv03zq+z$D^D7mC*2ITu8KZt8NWG+z#S^YV|;L{>-TN5o4t?^mb#1ct> zgjoe<_le9$9b~H@yF|hu-U@gghRf}cZ-YEbOt8j_?)Z*|(Z1h*m)-#gXGgf+ z2v;t;Ri6OsT^^TZwOy;52WDQGXt)xGe0yph{KiUuQ7HZ6BhoKrvL4}9BHVC^LzRhF zm5JPIz`ZSP+&h4KjWO;?x{u-BQQZ3@>F$g45AXlqrMnyAxC-I&5H8wwWv^r<OZ%r#cayn2<4?aO6ez4S!O5fvg0wAj`Q8yDUMSVcrumL(DjI z8OomBfI-0^nz%Y7ZrQ)<8z#$x>^NjL$leiO7?WGoXF67ZdD=2Uvud>}8IT$_&rVAy zkDPdqy5>EVFqx2gy;H<;F1Gx8{+{5~VwxG(drH@KOMNR6cX5p9t zgoYov7Rc3YNpyFJU=lxoSd9!i~LZBCsGra%zqY9DjEK(-{LjVwbvhen{iGTpxu zPa0MbzL;w<>=1~(G(y)F>~sGT2M6lxKj@lcEg5h1Tx%^!vF62%v&7V#F7_}S{{yjD z&Au!clwV&I-LdRD?#$@^KSizEN)R^p@?h{`1l8*Z%>S3hjl*ngF%}BDu#VU*9j?rc z*1+%k@O!Q_$Uj!@nbz8rxQ`HZjEyg4&tg-Dp|?H*dxW@_L&{z{fPIjiA1ZtFLap}J zxDL*?{2a4{@DNDsFAKV4kNs<|Yk#Ng)2+29#hoDK-Fl-=?No`quY%=F~+%FsQ#r`w#Q34)8J}_KZW)QYYbagTcLRwJD4%+?T~{ zC2n%;E-WoU`me*1h$}Fru)Vahm2~VSTb_;@3{n!LPUZR7euO<9YHJuRV)qm2*2Z>m z*T%MyROw44uT{{u4A0MI;#v+n{#QZP2-#W@#Ga3}-fK+3-U~MtMMooa44j3jqm)-0 zI^t#_aS>ak7>E~XEu#^v8#YajU5RHn(A?*k!Kf#nL_wLtnBJziSXf zUrYN?P5frqQOtCqc#UCbbcYJ?Oi9Wo!)nJuOwA?5PO@BJN$p9&__7*zk#{PHZ?xS`Hv=1HxV&BfnA4Rgh^*+&i($Pt}K%-#|>f>q~;c z*QhV{TomSSiJL0rhrS|wHmb&9>AU^VGki`kcn+?OiPl8v6C|&zAeU#n_li7rUeP|Q zkXdv^p?)Sswe39!yA5I2F>H9-R_ly3Y1=aQ3r|vtTAQ}VAl0L+r7x1Q>j7Ce$e#Mo z?LAGNNUZvuvXg$S1p1bhW9{;v^`QXcE#Jo+tW(r8iEYp|qXN&M|A;QTC1B0Sux963 zGg7Q}JW+}<2f+NrhBS6M1LLb3&&+YH=hrfBKG#w0@nW$gHjoTI2jJ&*#vNYHE$b0X zZ!B?(rEN#qfa?G3&{G9Hg?Jv{`*-!E;h~=8sBVhk^_G?(?QjQl*uB9Z!1T(jMXwd! zhcGSTo-A$9m&1o0eva|}*SHRwH?*uvF|I59WJ=!M)x-ths(S-zr|1KyqqyyaS+P8+5GnbH0TQ_Uge_jENWWC;d(> z^d6p%_eK85`VIY#Blh^A#=L>h*93i8*9L=&a4qX{K6jSqg7S1(KW9lxK*QO+Pv#|w zXJg#~|5!$e&rCVQiuI7{A+^n2zT*6EFenfnFOM-YL8HN!(W< zTqDA5mAs%GEVra~J~88#xSQLrK4BGp)V)KTvt38LZy^gziF+0N=Uo>JCgEBRk<~%A z5Hd{j)iE09ZIG>mtZO?sGG)%65!$!K^IUV^cB>vJLaTbUj+JyBMfj4XC}YtWHO^Qt znA76a7%cwfjgCX`Ul+^2Kjc5OPR@n@8OvJsTwAS^#kjGGmo6nVj3GA3Z!N;^L)aRL z3y1V4>meI{eK7cp2+)-ysM_?9KBxir4&dHkxtD8A%tcQldftb;{qmN5F&kuuA+tet z8?LoYr=x$Lp!;{cyC8lN`=I{e=b+2({I+OdO66Al!|4QJ0CGfuz_+JV9uLS;A0{<(4|CPZ1 zze>P!MCT`&>{c&}7QCiFj(l3XhtfTQyqp|IP9&$3SCa+gY|=+AAg?2DByS3)pdM(!YYk*|`kll#d7< z8^|r>Hu5=g&tG)>yXbzEe3N{SJV1U)9wv{HzmRdP-vqMrvs(WtboV6BCI^s7rp57n3W)LE7qWreL%vDwCqE#sW&8h>?!G&9IekI*H{`eE_vF9H-^ljr0fu2DkX^~1_QP1zAhpN!~}UC%2GW$?fC|1M(B{OY$)JJ^3@)j{Q#uGJ)(y_9Sg&fARuyC^>?>oE%3^Aa^mH*>q1MuOe@M zL+8UucQIK(`pE_45^^PZ3wbAbKe>_IOl~EgA)hB-BKMMSlKaUI$R_e@@>}v> zjLy$VWFmQp{laNvSgasl~MqrQI~-7Cn| z<50Q_OPm<4)FOs{-*U7iZzmcDk zUy_H(X4=>Fhm7GB4k~7I`NEbPq^pF8^K6xFvg1nhr zL#`tqBp)Fsa6a(_-P_5X!i6mkZ64Vh2QCf#Huxqw_ot|Hfv>&QQokC3a`KQysleuDC+$Q|U1 zKE+ z@*MI!axgi9Od&JKDdY_DYO;uQla=H`av8aryo0=t+(2$2w~>D#UnKXEZ;U{7CmNq~&=n??84YyOF1p=aA=;@3EZ@qI)Pgg1nqeBgd1I$*y~Jyt#DG zB(EV0$l0Wu43P858geChGr5MeGoHKYt|K>+TgWHKr^%hc1o=Wy2&mqqv2b04|JDE;SCZ~~Ckq(weKHalP zFIhz{CRdO*lXsB!k`I!PkWY}?$rs4oXHKeU^Cg*Y|aKolN&>WN-2uasc_pM(uwP-9yL`q@7G7$CFdZ zD@X@fK$emovWmQxTtVJKt|edPe5{V{4df%_6XY{w1G$^rM>dl0k)M!XkpCc?$sfq$ zq~%3jE~7Z!bfDWxb|?F?-#DFa8+k4{gzNBubPpqklb4dIWF|R@oJP(fon#SNMtaFA zaxr;5c@udHxrV%(ypMDo(D{Cl?nlVS$t7%`+vt9d{44ni`6l@;`7!wg`493t@(1!) zGVZTB9i7OoWKYsY_9HJK2a}hOmyu~?COMJJA+IF!$YQcL_fIS64v>q;>&WHgYVr

OP6Cjc`|t_c_!J196$~thmj*m zJ2{S=MCOvS$UL%$oI`rZ0J(^~j$A>mChs8Ekq?rOkdKqw$iI*c*+hOt z{)7CE{E_^PY|nYXN#x07cd{3GHhC_YL=GV@CTDUzKbr0oGK0(}i`Xuw(d}0+;Nl%S zy7S4U)OQm5o!OMT$pN(Id2}x_!;v?Tw~=>|_mdBq@>jH7ZKk`Pe1_aXzDSOLSNq>h z_iN-kVxE7_gwMIK|j=u7wc<=b6t9bU#WyMLtLFB3~olCO;sX$U|f^ z`2+bY*`Di(&g3a%Z?X?LkQ_>mBFB)K

rynMW3rV^|&)bPw31>$8&X#pH5wHMxdd zN3JI~liSE=$p-Qj@=bC-`4PF~LmmG?x(|`xl0T5gNrUa-1hO-E3fYr9i|j)VAP156 zb9}vs?onh4IgXr2=8~Uqy*88Xe6pAvKQSpasZh` z4kbsDmy=`331kjAgWSk=a~0hM_q~*F+N<4f(!GIp_a5D6aeVoh?k~u1$ZyFX$+?W@INcULm;LM!9nVR0 zTgjF5e=6Nhj<09X-G@An983-;FC){)3FK6A7I_U>NX{WWkf)Mokmr!+ zlNXZ1$;-$za)K#m`DD|51?eCQ$sx3#*>rozdE^3eDR~1~OWsM=ksHWI$#kaUNxGjS zUnKXCjpX0R#T-{Yq5CWH?_@K1j0}<|@co1NY&V_gK85T>oGqLT9`Ig+%KW6AO4-K@XKbWbC%Bn!ydZy;|a*OCn!ckZM6A@WgjDWBIqN%u444ssW{mwcQ2ko=7NhCD+4K>kWv*iWBG zb|Oz9zvMcgC*66RU!O^LUveNhm^{L87t=kOOeOPamlACq5^hsp2BU&wack3WIzM0O!hBYTs5$@9o$ z@?x@*`5H}kDmj6y<@hj#?ir+mbdj^kx#T=@0l9=+L9QZiC)bkql7A*2A-9sxkuQ<2 zl8xm1WD}Xm@#AZ{o5`QZAbBF+XTS$q)%&NXl4p?p$P389y2x@e zKrSSgk*mlx%jlau3-^zDxd{?e;^uKPL~7-;zhkU&;1-&fAIXN}j(- zm)B`@pGo#7lgNw7%gA(cA~}`3g1nk6BnPq{pXGjX8RcHGioBHl=69^uMU*ckSCU_U zsnhLZ|8z6uYsfRXuYDKYbz~ntuX>1X&l6hD1nw(sq5MhmS@K1457|imjr@fCiu@<} z19_Z`V|(pLb|HI`HnKmNL~i7J9T(9(njA}JkvZfn@;vrCd2|<(6=Z;1L@py&k++lU z$Op+S`5AeLJVO3R{!I3#-9AaX8Ax}D`QF+)y50hGcc8nG?-z8Y zyDNDe{q>~VM)oHMl7q=h$VXk|*rf>FvqqbsgzW zB)gNn$UfwGWHNaPc{!OuP9d)#uOddq$T!J%$xp~H$$yeRkjF_2>p7l0ne0xULG~dBkV)jlrjnUtHaU&Figc1iq`~!L8Qos8ioBM* zp1g^?mHZRAj(mW8h&eaJR`O}` zdGclQ4f0*`WAY&R4f&zDe?a$-WPkI02fEw6ugev`(x%GyrVlhb)7_QqNuEXaBQGEa zlOxE>$=CUuWh~tj$XxPDGM_9Zz2tndhFnSBO#X?ymt0S7A)g?(lP{1jlYO|q`a0eF z$@j@m$S=u%kpCk4aew4zx-Bffc(Mz5I(asE9yypCL0(R#k>km1ayoex=_HHE3erz5 zAeWLikk@j*qn7T=*e~yA|9L0n_mK~ho5)AWZRE4$3*>I{HS#U;J+eFJ(I3(MIoXHl z_=fIp$?wTyAapWX&8aa#1BVA+}IhUMA z&L?Zg736C2cJdzb0rFw;QSxc>d2$!ImmEnue24B2Njv4A)BP{*w;iJUTk;3;7ZP6r zs``aaWEb)@@+`7HIglJoUPO)}Q^-s*o19KM$U<^9dFeKtj+fcr&!v1Gxsbe$TuI(c z{)xPYtRpv)kCU%%)bTt;_jBYf^FH}5*9mXZy`Nmday~%!XXGLBb*BFa-9M7QlI^*# z){#7!>`wM1&m{Yk7m&lqQDiEaNoKHKr_eo}yqYW|%Sb=DfUF_^@@HL6H_%;6{)xPg z+(2$2w~^104diZe9~sB?9pt?K?@#LZHa?;GHvN4-t|dPszag8+pU7XyxR14-j$|U) zjqF99O`b<4k;BN*WGXqHoJ!6huO`tCeo<;U0FCdf2v8?amblXii zIiAcWr;{U@zANd@Cnr!}Dcv5jid;x8BUh2Pk$02#lMj*)laG1%0L}`@70=m(%pEzMP1=*G1Vd8izo-a5>y@U^S*r7ogC)Lb^yxFc_qT)g zA>U~x2c7C?EX7^_uAE!s_EWUmOtmM{-JMN^TKs?Q+%(%Pkw}%vP1Y$lB_7(ZzvlSw<7P3Dmv zvWBcB>&SYtfovq3$Y#>`lJS!^QcM58JI8x0DzbL}Wt8Gy`XuR}k^}hpPFzbLVD?k> z*J+LQi>diq&4xvqp6e+`m{>>S5`Djp{_7Vq99c`6TGCTfN7@EV%MVoe1Gd3~lZGWF z4;ma$&cW9X8IqJd>^zEN#nvJdeeI3!f-Mq#CH-AH+*yVE%3)Jy!;tPVmVfy^%UJSD zAh+O~BOAV@0%8Q^%~A3!%FXY!F+=6!qMgypXo{-83MD_)FvlI!{~frHc+Kz0G35^^ z|J@C995dw&xQLbhJ&=o@nxoohfrjx8<;|3<-}i*9iE`r@E^u6_Vf+M&o;=Ebru;Wk z{%(XUr2rv&(ZQU4dd^WdnDsHf|SQ08RFk_o)%oI?i$9~kjJXWCa`~+W@!y=J{coWB8OrM})N&`~?@^wZ ztmR!ajISV<`n9v1&H2?4`ZtDZkLovNpsOp|t<*~*>#IHW_l8{3(IcC#;^E53VrNu@y z<;l~v+?-$DPCa=CwLFFX>y-R7qlxoR!>(^U4tcD6y-NKa_N(f`GNBkQcA2#T080}F(A~(km^_wRM)0uLkMtkHk z#5jj?bKH2F`jbpO9FOeOKa%q1rCLx;c^2eiCmFO8bNYED+W7Y46%6~5-J1SpI z)U$_r%>1@BetoU{cQX!~hR^f}V#WId{L3iW%=C*(j`$O#oO>A2^YAW84y)n1Mf*m( zgq%wUQ>18Da*QKq=<+G&-G5^p5zBuz{nuQf{j<9_u4zO6eEPSYs{Nbxd`BDpw?NJ% zOhh_gXv6=9rv83fzqyY5n)2*5TK){Rorr~DSG0@73N2T^Ie~j;DS1Sc$}yDw>w0Vd z!|7#m8~)4b-*b)jKa>6!Q{KpO&ZT?}<$2lKzsv*Vc-WM8)pD~R+W~nO^xKKFH)S61 z{}TP%qsrke$~`@`9+?lx@wF-MqvakA5MKgYx=mj8?Bzn=4xbLrnsdF^Z+??TFRC~su>e@=No$>|7#{5G((FV6t2 z$6U|cMR_*IU$uFGa9bchCoH^q`AQr5KcpTz+oRcz{zZB8{4hv)!)8L8`(^U`!>WGswI21`NziqA8|`io{U@KO z{iFG)<8sKmSWY+0^)tmrRvUT>sHgdEt!F3$tf1WH(sK11Ot`m(^14-8u72AA@(q;d zt<~~n)U!{?=?KHjHtg`LHvG$vnZ_#r(@}s@ZrP{nct~{N37y{+H>$zPr|wK|TL$WBmP;{u86@`JW=UbTQ2R zUaB#=w=u8yzK!&p)G2m(_E+*mqw$`|{Eni$CMv%Ll-pQ7W}maz^xsSC$znq9q`Y>9 zmhZLb8yg_+g8A(s_Wv*sbv&*7(-DSOsVAEQtoltV-0zFuz>8%kpVPmM^8|Cg@oO9U zyQ=mMyIP>r$!^g&pYq0AwR{uPl+s53P}+vw=Ct9znELAzwf?uMe?c4m@23A|w!3Zg zzoQNRMQR+Rr!c%rJx0_#=OE?vHl3cw8Kzwu`hTJSrq0^`rS#tg1Fo7Mavsu$a`_$Q zSoJl5{`0zNJv-?CThf*bH;4myU z{hy`vKhAq=D6i!PhM6z|(9k4(Ed1)YZ2Ni);GN~`L#PmN&$Ge*TXHj0uaznFK zM-k;Vj@L^mUqZPN)gP{;y z($mYB!F?VxBiGTtO*YbToIpESN4dfN%Cv`Vls9r8U@aBxQF1!M@KGD`Z`+W^qeD}6 zHA1IH{f;*D^-=OL#k{balt zhA4Y@Ov&jf414H5?@Fzw6ZPMY2k|h8R>w#5pB&YH9;dv{uN6E+J-wA4%n!fQsq73R`^a@79JQd2+c_j?AqUCF~W=t^`X3p`)p>p4Oa5j z>B)iI)>>@jQ%^nn0h*CfNx6-7Xxi|NZRlA~|Jhvs-pjaNrM#KXJd2+MF=`#Oi1O&?xz;x7>sI=2VuxXl%SKLt z*FQMPZ8#jx{8ESCS!{S+WzK4cueze3#Otnb2Ye2{%jZujFyPbY4-^&Qve4yq6_@(_ zF0aF1?kFg8SGasoQRsFQm$~zuWsX9>+v{^U164+WyWCUe^1BL?l4JXD6qQz#I-FiF zVs%ycz12pM*IDjz6b8!6s}Us3<$zCrgx7-cIg=+LK^~{q=W>*|s)q5>=l7OY6dUvMUYAkq@;lu5vt0##2X2)c9)$5bbWn%K?@fYQKhmvY z5qV+2lT_fY@cBJnw+AgPr#C`} z*X1cgndnrNR+y<`)+^k|wgZ(|j)cGl++NWv7UFTc%OKH3Ng2wf0;P#W8>rPnO7p87 z0dJWq?Sg>Ui%NF*OHsq+J{ViMd!EbT3*`F>yrmuqDfgu6N}LsiWiCWhQ4Bpk&=)FK zDa9CJl1hDECyJ}w>7C{IoT~Sn8oHW?bxoJtiV{X9Z)y8gCS%Dkx{J6Z( z(#o^PT~=m#3;0XRe8|49#5v@miyeNiv%**8_LdtHM0C;MA>kr84WCpREDI1Pn9S^2_@}2dZV4!l>uFkVfQ16{yGUl|1?)$^_LY>LNYpy7IXSJgAL1gHa&Gjsky`f$G;C z&$y{66UREnPD*n)(5IwNn&udr;n2d2w5f(8ZRVtuiJ7T}BRy;Kn3OEX*weEz$D}%jBn?d(#zvRwb)m&gbyk`QbyXC&3tdJ|PL@OZ7}cEZ zle5Q863Nh{lR z*+mk=1uxN;*q}*BH&^BzK?N^}Bi-?mQi3*vc zdfBNi^s&gY3*}VculBgmxs|yq(eI+G3WXhNrb4$E>B?DrDTRe7yIeQ3->Tht18Bn1 z(L2&z{uCJ~q`(Y_E2N_^b2l`!lUfcF~?Qyah9S()di1UqcAeK6Cui6uE-+S zTBPAb>McQqp$jdT7oo$EIT;=c(Uk{$XiYkBfw$U&At$obr5MdJO3jgi!I&SRD^%<` zs-~yQ;6{x~l~yk4aKN6t&H}$#%VtvyWx2{-QHD_?kgtlj!0#=KDpVa;xw8ybLoNB$ z7_nuj#KuYHwt^!FdY7G6A zSNBb-K@^ln){fb(r9e=zQqEC1D|ePwFh{6F-A(KCW%@$VMp=Tsual;;pe*0W&B}p> zQW@LIUH%exbT1LI6_2zH6ih{dr#eQ-pegC7Ra;^`vgxA_HOgJ(F#p&A$IA31+wVn{ z6#7s(YNS@x8lxl9sw0XO4k=cDrOP?TfwA1Q88vXW6cjAmRXWeKw-yZ{ONy);hr`!K zFD<>UwB@4c!a|UWHo}CLe^}3w;be`eVrxm0*`rE}c9&xqqis#qvn%mEz0{fQ#st&l zHS=3gQsMSuPJrGgWS6bSgH%iiaxl)9`lT>1jR@~mrT5ZFO>>0@)y85PnRcm}wxOnv zGB`)nt;11PnvZ_pj~TB+>@{?E=rA+6p(ZVpmr$%SCzb5A3}BH7*7Yxq$y+*4CZuzRG}1|d@_d&!)JQo8Ds-t~w9M&~S-I0MYY`+|tlAI5HwR)V109REsNmuemyE!m zTjBDmxEO_QN2(ZFMk}Z(YE=+gQGTgs=nw~%IVf_6$LTLIBhZT@nZKy{r8JZ9_B9w& z0zE;BNS&^SY*}86Q7aPk%MslMCUH@HMs&0BX=8z{D0{&a68%WQ9GPE4utK7R6{+4f z6eP@4TB2=P1W=(~R_TLd#o4kBGST)ZIoz>s1LX#M;E`#$H2F zS-@8kk(MG^lSD|g{+7-@VgORcVpf`2U|Ft;Vssj6I1KNmbl%WNRND+S4rbY0ySJ)3 zl^->-IMkHL^q{BGYDz?r%rCe?3&o`hDHK<9W?IZ5JSWn*@0b>sLm!tP~^h`0LqO`9}-=qM7U=EB)c*K3? zT@@QuMs#)I<`gjm6qJ;f6^8QBddQQR5LN_w{A_J)Qh$29&?!_6%fNP*sWa5lwBe}s zroF;ebO#(=fx7Mk9>l9g#OP@$>>JCli0n%zWDZZ}@S|6wty&OwSMps(psn=?mlOqM zdR?zosKynsHKY5 zD%^kS8oA}A62>%yFS*fWVC5gP&yX%J*Bx%7YA;3areSM<#l;~wWG@a!zE75pnAye7 zGxiTll@*!IC$mC{%z6pU`^-tM*?B4xYuONqm<7n3Ig|ul`&h)uT27ZPHg*eLWmqtU z?Whbk=d$VHi<8KihgKC;YtX6&LY;x>df$}E53>N+g)|n-*<{x-qL6W?)w~)>RCV8a z+eartl|E*IvX#<0GOQh8N>|FZdt4#PkMmR+XB*F zWY5)bWadtkxicRTU}TpE1i4O3J!zu4W7pZG(P8nNp|;VHAIx_mDhCslYTrB+wKK9u z)5&TXnOg?4(3%}RUbzS3lk9~+cl36a*1#PM560L~r^CTddoX)BvkQ{p&aL*VeNheG z;V4E|qT3rb8+CA9n`++Zbd&3nZV&ITln|?PJ<*UM1>5VW@girSEJjOc zv0pvYHs|%a<|Ce1v~*!IgopYMBgt1??sw*c7}XR@%qz8`_83VOZaf<)t_UQ_vl&bf ztHVV30Sw=RN((7U8Iw6k9(5`2vI%b_6;@Xu3QcTms5@9f$n%#7hXePdC?o){JjipB z+6_y>Wm2&lPPu?p8cC{eNRmff@aFBRc&~NadXaGrW9$Q4W(U89?$VWoL%RV_S8U;w(YT@aFe-m^8nyL;Kb` z%xmFX{L6P?nBmRuzcBeUJ)7w_{h5@{`O0@|nC?72NH^KU@REK>r!{4n<2<=F6t%iA<29u(;37PJ^YaQO&G$-8|Iy|5GQ*qoZ+_0pr_@ zDT?-Qx=qUKb$E3;6yE&ag!lho_+JrLQf$U=e%`u?;SD=(h8?!BYq^y7?xcu9;rYEZ zO|x|RZ7kRh3}>d>w1dr%hsPiK-0aml;30-*@KF0R^~md65#i0x1?K61jb=d77Uh=L z4MkTd{S4p8@KsU%qr=NvZ^YqXI-ZjsFKI6zqlo literal 173448 zcmeF)dwdgB{y+XHPz)+2D8-MCQGPZ)qcJG_&%_1SNneE@fuMAdTkC_`z2rP`>D2xA7eE@d}R8ocD}V=4PKM` zsVKEyVvZG`_*MF=$4Y9+*JOLDGO9nhXit9i$u{+qeC7Ru*pFYQTDxhKV8MBa;tq*jQUae;gqM+v*n$NQSDKs z-6(&%yvnYSKk6r5{QC0kMQSN0O0Cyj8hv}2whrJy4;a>diUh+S=m+~CiOMQRt#W(bF z+&g=TU)9TTPw6FobualJ){Fak@!Nax^LuIMBYG+4IlcIKy_EmzUfTc2Ui^k$^1r^9 z{EzGZpmy111q)V{E|KeD3idIq41KGE6Pl}TGGX(r7KI# zRH%5x;w3At)@Bx5wqVh+CB-Yk3zip$gDb6^r6Mbe7ll)Km6R4+#Zo0v8KVm7z{!H8 zVituD!s-VL7KBQdtO%Ew+oY#13YKcJ%fe;hCCiJohyQBGPrtOJe!LB`efXY;hqM(7SFE(MSg@e%y0UA{ zF1&D=R<=_5U05qwDQ%{eELyfwT@A8JNIGG-G%QVKzAUv~mZ<_r6G?AcrkYT;tx&m3 zo-1qzE|arcE}51rD=!PGAo;%)Yh}AkjwQ6XTfPC?cR9AVJ=@3F-ljs&l!7F49W#2Y8jSnM^Il*1UqACtCSLoA z_A~#dwpywF<~GawVn4NaGWHO>bC}jw8-P4i#G&TChnab)e3Q8+kE`T95j3T1XyS`)ivKptk?lFShr!Z6BaLkL@bMb-%q! z_CH*E6E=9s5_!HoOnV>cqs{c8+8(6uHsc3qok-tlrXAW3NdLu5AENb_2YFS-qs;v? zwLwUiAG2hDT3I<3>F`jM?xUTm9{lAexvrC3PYJ0TtNgTKy(j5Dc!Ip2n&`@pL4GW} zlYHcQE53{TB*bf{$qiY4lE)nZcaWa}cafh3cau+od&tj+d&y_OedL$HbIIqx{p5?_ zI{8v~fV>o5Nd9Yh5&2qpkh}&SBCm&6kgs~iIxi9OyAfYQ{$KEV@`vFKpQ?JQe+@4p{{bE({|VP=h`cYx`3mv@ z$?>0j5WI%m4X-C34sReo1>Q)0^*^lh*hD@G@y+C8;4S32@EG~I@K*9EG3&T-@~Mb# zBfkKiAP>L|@>%ds@_Fzs^2Km%bb9|^3U`pd_BZr@@)wfhKY1zg@sM8+_mbZP_mRK0 z!#Zv*`K^felm8a3lm8wbAip18Nd8B75&2W_Ao*Y5A@UdD738nLBjl~{8uB;b_2g~v z2J!^Fk=%eck$(YiCjU3Qh5UPXj64JPwN~=}@HqKEcpG^ZJV8DTZjhe@?<7AR_tP%& z5s25$Nbmon;STb%;4bosa5wo>xQ9F+?j^qn?jxTK&n2G^_meMz>*QC%1LP~=h2*Q? zMdYjDLGns?i2PP~1^I8`5%P8L8uEML_2du38_1u4HA-bwxyyo>x>xaLdm|3AYW zz2w8;KJruGx#Xw8{p4rDb@K7>0C^s~kX(lskq6*G@|o}u`4#XA@+;vH@)CFr`BHd2 z`8Dtc@(Oq(`3>+U@+x>U`K|C4^54N@jPLB15;Nq!Byi+mMaJ2SoiN8k?fTi`D8+u&~U zJK-Mkd*NR42jM>QCU`FSpW%M;=ioZ|i|_#X6K`7mxsZGd;)}?4z=Pzk!$ah6!z;+& zheyc&39ljl7rdVQD|iF>x9~>tAK*>o{qP*uOg;eKLhgdc$cMmN$&ZD{$xni}k&l2U z$j^Wqh9w+}0-bVfjJVE|1xIx|t?`B!is zc^5pFT*G?1pF9(;lOF~TkPm_vk`I9wkq?Il$xniZ$i46i^3m`J`B-=j`2=`9c^{KOW|?yYv66YyT~7cyU8Ded&r-Ld&$?sedI5}bICWs{p8!>I{6#$0QuYSLh|?FMdS(G zAA{tdB0fa^IlO{=KRiPI9lVA-<9Uq#-@q%#e+Q3{{{db@z6Q@1_2hA^V>FOIfP5OsAAvWKKM8Lp ze;VFG{#SU6{AGA6`Br$G{8e}x`CIS=`K~S2eb69pLwqOs2kA z@|WQ*^38BJ`QP9k@||!m`7XGRJOR%oKVqA8fAN#=LA*}h0S}PxhZmB63oj!72_7Wx z_mWkf5c#3-3i2c25%QzqHRRhc@2w{vhWG~Zli-cyBj8QsXTY1u$HH64&wiNd6~yi2Q;#tn*$$z8BAl5%TrO zr-uAxcs==6cmsJQ=E;rZ8R{43<)?{!2l8nqe*@k^{x&>D{vo`Td=ETM{sp{^{9AZ} zT*LQj4D$Z)PV&RxUF1i?wMpsye<<8RegfP@?uEO_eQ*!?*>ErUd2k>3G+0c{RL-ybfMZeh0jP{15O(@(18e z>-^t|veLCEtU1?cDVK|2f=2 zz8~%)pO1f+%1!<~;yvUV)-k-~hroU01L3*kS#Ur3ad4eH8y+A(4PHn-7G6X?9v&n= z4;~^vA6`LT0FRK*gx8SIh1ZiWhBuHeg*TFy!JEi`4R0pD3Eo0p3y+cC0dFP02OcMX z0NzIaC_F*_B-|i>7T!s|0p3Oa3S2ucz5lnu9prJii~L=7(Iq)X($?#_K>F^fvi{UZy%iyi#SHR=sMesKAAUr|70&bA6f_IXyg?EwH zz%_q*|9>8zKRU?k5$_^j2X~YI0q!Ax0PZD!6z(H$hUb#6hx^H2gzMxncz}Exypa5L zcoF$O;6d`;@DONQk{=C^lb?w1nYWQ2hxi0}Hrych!aK=Nhj)>Wfopl`{eL{%L4GdWMLrGg zCcgmgA-@FfCBGc*BcBJ)CBF*pClA7P@|Exac{#k0{Cap1`C538yb2y7zZG6Vej7YO ze)0QOKdd3Y1M&6be}FfT-w$sjzXtQtCh~_7-%S1lyoLN3c#Qn7@K*AT@HqKacpLd^ z@C5lk;0F0_cqjSC@GkPt;M(N${=X0IApaWfBL5NYChxP!I*%Um0dOz53+^M&g6EPS z3-^yq^4U{62mI`IU%o zBrk?HkuQfglb6C<$ghRR$k)JI$*bXU^54MQ$nStB$nSw0+-5z2tv@`^fKy z=aN4R_me*k*U6jV0rK_mLh={kMdX{{LGoAOA@Vr9g8UtLgnT!=hWulAJ^3DZ1Nj&5 zM)GgqP2}Ifo5{Q3E##T_d?7}D7`&By5IjzPG`x*`I6OgqBHSQ91>Q-XkMGZSk&i;W zrvAZK`APo!Z#i%Wc`n>V?uWa{FULIALp}}hUh>7SS>vaVya4gJlkhH^O7&kHTBYpM=NBpN6-QpYyg=o&@=N#2e%fP2V4g?q`{;Xd*&;ko4B!2RUk!FBSV;Q{i@tyVi1k{<>yA~%xr zAM(M750M`OuOL4j9w9#&UPC?tUQa$6-atMU-bg+H-b9`UZzj)&w~zK=V zAKXX&2t1ek3Ams9S-4LA0z5#z30_FP171WPhX={q;34t^yn_5Qc!Yc(yoUT6cs=<~ z@CNd}_|k^KD&#JkB?!ad~I!oB2c;6CyycrN*G;C}Ku;X3&}@BsP4 z@Ivy(;6>!k@F4kL;UV&k@Cx!R@CfB~4)enQ@ixD3p zUjnZnUk;Cue}epL$is-QCtnS3AiojbNL~$ZBCmrtlm8ChLjHSrjQqdgt>h2E_B;Nq2!3$By@3=fd^$M@w5$&bh9;6>zzAwEd%f``c6@Cx$b@Cf-y@EY=w@Otty z;0@&C;Em)H;7#OH;LYSZyoLO3%)4Ub1&D7YzYHEHp9^mzUkFc-m%t73HYskxP!a~?jpYp?k2wj?jgSi?j?T+?jwH!o=e^g_mf|U&*OCR=MWztzZm_z zko<2CTjNX-`3B?@ByV`tiVu-*M0^GLI^1U??+~9L{~2zOSD-wd>rcoF$r zc#ymZ9wI+=r*(cS$cqslAzuowArHap$vq!g`8SZSLVP3n4e%!No8ismzk#=q-wBVA z-ve(Ye*hjQZ-Tdx{|TNTe-3VtzX3B`ggeOJfxF0mkL%Y>{sH1W zQ6x4dg!}zLC5y{yPp$ zMXn=WyEwi7Uj%oM z&xX6m&qY6Xlg~%IhkOy-OCE&#$XCL1$-{6z`5L%RUIh=3*TM_Q?}QhT{{bE(zaJhV z|0BGD{3&>Z{5g0H`387Bc?{k_z7^g`{&#p2`CIU2@?G#2@~0lN=3O!J1mauCKZD1~ z{{?R&{}P@c?}8iT8h)>{liUICB6q^IKzjerf;-4>!8qe0KL+t`@)O}6@{w>axex9m z9|zARKL_q7zZK)2PJSNZ1LV`-h2$5)i^wm72g&EaL*xtL735dLBjn5AHRNGjpQ}(Ch}&ik2RCuhWHlpyWlbM`{1qQW%&1y@*m+kd0(ub1jye` z{`>#r0}x+C9>DiQg5*aaK14nkUO|2wJVJf~yoUTEl(U}v6vQ`>kAgRnkAXLlUyA#9 zGkGrJTgcCa$H>ozx026*$H`~H+sNm_6XXlw2Km3yKAq%C5Z^^!3fC@8@BbBW2l-mK zi@XNzCcho-A)k!m1lKN0@Bbs=4ssvdMLrJhCZ7QJko)0Yavkm? zzZjlNJ{#^QpAXl`uYw22e+4fj55bGbk9x+M_Xf#VAwERD7G6Pq8Tw&_{1(L5klzlk zC%+5cKz<**k^EtJ6Zw4{1CX8{BXFBd@wwhd??&c?t$y%r@#Z` zSEC;ml8-`s5&0N+kbD9>L>|HVQU!S);v?ibyoUT@cs=n|0m!M^1r}cF^fv8SohSEO;yVe0ZF^7~V#{44xnl z!wvG)@J{k7co+GtaP9K+{(lGDL4FV1Mg9=nP5v0%L;f_}OWp$ak;mY<^7k-L z*2!N*e1Lo>ypX&NUPS&OJV^d2JVd?^UP1m1JVO2>yoS6F{+;J~@?)Ct`7ik)h;Jl6 z0^USE1l~+O9Nt2H3Oq(W8s18NHat!~3EoCN8J-}Y4mZeWz&puj!n??i!?>!=PVfJZ z;orM(kk3OtF7m73Zt@`9Lw-8``)gkEk1?+L$d@CZT=FuwpS%LDlkfe^>L&s6S$Hlh zB)fKgXBlx-ysQ+M-g8^UJs9uABBJSuZH|C#MhG-J&pcPJ^{Z6*GPUZ@@XP} z2;NNo7`%o2X?Tph1>Q;?gU89Y!`sMThbPG2fg9u>z&pu5gLjdC4%Z6P`~TN)2l@AK z7kLKe&u;Poa1Xf)?j;`r_mK~W=aS!z-)HobpNx2&d=xxDJ`P?;J`r9-J_Q~mzW^R0 zAByLr3i1HrBjmH;HRM;q>&c7Z4dlz=jpSi?6ZvX*GkGPvh5R@082KIWR`Pq{aq>st zZRAhF6Xegr4e}S@o#dO~UF5IAwJXy5|C?|Jc^lkC{t?_wz6b6h{}E9|CV6KMvkVegeFS{8V@|`RVW$^0Dw3`2=_?c{R>goO}x6+sJQ6`y|LOK)gYI zF}#!fa(EZ}GuC<0=A`%kd5CwAUj=uO2jOn=m2eMv+1u7}z2srU`^c|@=aR31`^l@| zI{B^e0Qqh3Lh^O+BJ%s-LGlOTA@WDz735FBBjkU9*N|_3*OPCAH;`|GH^cpLcu{CkxN^6wFEkZb?2`c)@+CcKOMFt|21z5gEt zcaRT-yU0CoH~Fb>5BV8zFL^H9N1g}IC7%xWlh1(bK4M zUIwoquYgC$*TQSaZ-&>C-v)0WAJS~~heqmNInK$L_QuKBtI7(BA*7YAioeEArHW7$S;T2lRx*k)z2Hq z=OVt5d@;O<{8#X1@@wENk?h$ z_aa`KpWgo;f;-5Y;4bn%!QJG~!9CJPvOpe+S+~{vo`X{Gad^aswVC{{r4h{xv*K-UV+X{~4YjUx#%DgS_v% znE#UxfOnBQ;o5@q{+|VRkPm~q$WMa1$w$CFF6+9^CI1QWe)2wTR=iF=03INB!VAf>;6>!e!h_@|z(eFC z;1%R&z$4@@;ol9bAs>hMdh!YI2J)%!M)C{cP2`uto5`<$w~${2kCFch-bx;V$H^<; zZR9t=6XZ9;4e~m8C;6T5F7kWf+QRhy{{Y-U-UN4%{~7Kke-7>;KMKFU?otx03teaq{!wZR7>;1oK@>`IPpZqqsPJRbGK;8f^ zB)<<{ME)>5Nd6c+ME+-Z1^Ie-g!~0~4f!kZdh%`X2J%dNucMLtZ-{Rq-wAIfKMLoi zg?ty{W8@#gTgm?kkCPklHu5jv3G%Pu2KjgJPV%4OUF4bg_w=+y>HYsOxP$z9^k)~j z3-NC9EVze!7~D&K65K~V5}r%$gZs(Pg6rhx!UN>f;DzKDz>CNO@F4jtc!+!+yn=io zJVIUquOa^xyq-J+Zy;XZz8XRHccpLds@C5m@ zaD#jUypwz+?z3Iwn-Q-qPVfJ(!X4y3HYr(xP$y=xQo0N?k2B?d&uvGd&%#I`^cYv6wklpk09Pp{sdene-<7fe;!^)z7^j) zDk9&A_#pWfc!>O(iWp8_D;;o5=UUo5{a{w~&7i zkCAu7Tgfx=`=oL50q{2RBj5@0A#j8ISa>ISHoS}cG`Loh-v7tI9pvNTF7jNAt8Vf< z#CyokhkMCqz3ojAioVB zAzuftA-@-1PyR5xf&2-0BY88tiF`f0nfyg~3;EZ$u4Ck1Ccpnf{@$|~|HY32z{u2X7=_ z2yY?}!kfuM@D}n_@EG}8cq{oW@HqMH@HXN1uS2{+ejmJ({1JE;`IB%hnBM>Y z0(X#afV;>y!rkOs;U4n8!@cA?;Xd*E#y9UjC>rt zmHZrdoZJs@BR?OWARmeIYmi@v_)hXm;a%htP+x6HdjG!y@ecALxQjdpcatxJd&t9Z zFZpV?kNhThF8Qr+Kl$x&o%{}Xfc*FHLh}ED7m+^<50XC)50U>FUP1mGJVL$!UPHbK zUQfOq-a!5uypen-yovl>cr*DA$@xF|`-qQ`{}bLyekuA}oZLWs8~HwXg8Un}LH+~0 zlU&2U58Oq52weMBdjCHh?jRoocaaZ;yUB;cJ>=PNFZpS3AGr^nOTGZ@=_enS{P(ZO z$045p`2=_&c^*!~Lv3DU^TTW&wE5vS57~U6%`0qvgv}#1ciOzh<}RDp+kBAC8*F~0%^Pigl+BxL zKG^2XHqWwoi_M4FJZAHwZQg2gx6R`=A8PY9n;&EIgw2n&xnc9;Y~E?}VK(ow`EZ+S zD|-6v@iuqZ++%Z>%}=no+vX?Q++*{TZ0@yrw#|JuKiTHFHb2$oew%x3uG@Ts%>yx7hq_o5yUPYx7o{kGFZ;=I7YF&E^wqp0N2un;SMi*XErzKhNe}Huu|H z!+5U7&ODntY(ClME}KuWx!dMbZSJx8G@E;Ee!k6pHlJ?uT$}4Q_uD+*=DN)CY<}*A4sLu1Hk_F-=@-P;<>;5##CAj zn)}Rue&~e=4mefKvZd zT21_<{;9N@@JansX*JQ4`lr%rf+zJ)rPahv>Yqxh37ynGl~xlusedZ1CU8>!R9a2k zr2eV2ny^Xze@fQhW2Qe&rPTyY>YqxhiJ8_zF5|5RE{WTgJ7w3@(3{ZnZ*agq9`(rUsY^-rbML`CYKN~;Nq)IXJ0 z6BDU_Dy=3YQvXz1O+=*rsq}?rIwzG@6B4O^Dy=3WQvXz1O+cjnskEASNd3P@{be*P zzEzEeQV%u$9V9)UwsZQvThjMmN9j6BS5tZorOPS3oYKXVo=@pnl%7H9X_THs>2Z`k zozf>$dKjg%C_RwUnUwzN=JfXaH>LMc`ZG#@K4B8ar1VeKbp9#5 zkJ6t}`U6V8P3hMty_M20QTjPbKSk+BD19HL*HOBT($$n+L+Nr#FQ;@drRP(67NuuU zdK#rCQF8sP=QVAknmFcNo;NFR=B&$P7OF4SYx|w7?(TYYYIbf; z%y>=4TnVm91`BPlXwiD?FZ8HI6}G55g^ct3npPciRv#)8P`&Q-dYN}_RC7~3`i1ee z%x>g$qng_pdn94}R&GOjbi46;^L49Cg`HJC*>i*Zv5Hzy7tZ$Rb(yEifuvL+DMCT? zYgJaICx{l*Ez8bT;1xK{gp2b2qhA`= z$??^()i;UcC?jnZeOX0SZgv!m?tIWoH{h<+k_ZP0#fl z>nu5z+Vka;%uO}PVo10gO{$Y+2JAIH=<4qNl^oZk{#rUiAGr%T%! zZE`}Io-zfa+fZsJNdY(49WcTN%FBqezae< zUMJb9JRKba%=>ip?(n&JwevN34ZXbB>;qpK$1l{hobKpm<1EQUmHo8A+4<3Jdgb@S zZg^dtiVvm7%!rQ7uHId~N#8D6%8r^|yE@yEb3motk-Hi+!;q46JXm5Lry%-s@{|q| zZof!%v$}Ch|Ju`d-+e1oJ2Bg6lzE11E4FR>Ky8x)ZUMSr?JB`aV_M$}M`dZSMTMd3p2muFPAoSswMa-I$@htS-J6 z)L(jC)~sjcrB+>WPe@aA{8eHe*bkA_ATLk zho$ztQ1&(6kr`S4tCgQNORtd~Jr(`5jv8~3|iD&%vAF;Skq=%11wP1$OEbArm}J+m)MW>3qmdUUJwj|oz;8P(lkm+Amt$dim3V9!!* zP?vR$MCHUJ{BC(;?rI!vh96Mj-x?bcezX-nIT;>Fg@5pk%6*>-|I!E`yi4l8L7J@F z%zI@jxY-Q;R0Z!fPD1b<5}dQsjJzThd9y_7lI`KDw~jX>%g0GMtCA5?v8z-}ZD!>S z(k*IpReSebGwsjG#bsXKDg(DdsN|_W4qoOpbL4%yoCJB8vPJ;CZr}v5%C7G4z-l@0z~fZ3bJ}Zqtqiv^x)#)BA8S>vc5tB@ zulB2&ncKe9YsVHE8>BpH5SPn;N^QU)rD=Yur!=c2Jg?UJEq}9qelhce4P z|4@8!GHwdcF^y0Lu<>iijzb5FdWZd9N0qw{MEvK`U~^=L;XG$T^bh_OSfZMrG&3@}tY-uAX*fN@*ghXUQ4LklUO-BCd~bEt8^d&q$~B&h>pK zo)~scoL9c5X!M_wg1SIlou)IEkk8*y>3>2G)HAu<_*t8*7ToO{$ym$ zA?4+Nlx!TvH?p`D-DJyU)ooLwu^T^889uMpM_)-Cdb0MTQyUPklbUB}8~O>hbV}FG zYmpdjnsa^EjEpy;-{x0-nIU)3{*`;rt9&DpSF<)FFJfer?-|fpknw7VGr#VVjFthi z!}ERQuX@#98L!Fxz5O+*h`DiKa%0CQW?HS@n!z1A&9o|wmEL5g)#|U6enzFOw~yv+ zlbPRX$H~lZN=DxHX>ON9&4|vD(<#%o7HJZ#eUsFAYIIv(W!KtOM@ns{u*)DN<%H_H<`;j?>%K^#@YERXpKg_89G<=0#JKZ5&x_qwO+qH;3{`IoidhPXc z3C=uQI&HjcZtWD0Y@V#&D3h`7^H$B(>qZ@^*G|b**TI$MW5XBSak<^8^bLA+siPoz zQbFHEa^Fp;QAm!g=@X{AR^2}>=hM0KMNNyy(X{-GAA3al`Ac$ywW_lBckEQ-k=#$a zFY_Yr6Xl@N8e`NU>jD|Zd0(obZ$kHFzK&?}IyaO0_9?0tX!>?_3bghz$u`8&w~0R^2Y|3u>=+RqrgnPPNFzJtI_pt$JXSA?8fEe8XoMFMh5L>Bxz73^dzQ zuZ(3>?FCtc1Q?Xl(Csp!5Xs8Q2`mbp@`#O$G_NR%5tn%eo zZq0PApDY8>ri`js*eAo>ajS+*JXD5n{hP>l8P^^$@%U@s>v&(aw~R~wNXE*35?>yd zLF%Hq?2-9$gYRp+AQy>s`*c<lUa&UNP}_=iRSNJkhysQ`MX0 zySDY6H&tb(*Ih5eN7sp~j+eg=x%QI0I)B&1V^-x`17=l0M#3C0{hDl^SAM3-aNCrO zc`8$@mC7HTvaR2_Cz=<$ygNcooZYrtWkIyveDINH@u=Kz^zECZ>vS7ga@q^j9Y_k0 z*&YzWd6L{uZ1<<7OWS>E>5_I&T6#shD=i&v*V58gwRg(UknGP=yquV=fbf@9$2LaG z5SU7j`fk&_}lC~sT;6V>c9`h{5;!ecSF`J|o`%d7m+=ZMQ5)3mA4gubZXO?pOL&UjCM zDsg_fLux*?cDh%VET;R^gw!W{X(dymi{;8w59KQ998n;%Gr0~|lsHGnoVQlV?dxmj z4FlhQTtc1Rc!_hSOaew{skHN!64@#_@7|y19N8wk*?H>}S*CDSPg08&b&Ji3-qjMi zL4CBA6EnMzn$myJuI|QL^D2KD>b!Z3a}a7#NFW+jlG5pLTY_PorgV!SB7P2cy$^Y_1ZFzoQk{`)ji1= zE@!Lbc6D99tnOv%;p7LkM5LCFN~P1~y;Ll`T`O6*tV|jx*spzo*%c*T3T4LsEg3&q zwrtnJrRBv|=G*-JH1u>Cw^Q-=B;$`X<5!d~TV{*5db-40m65TxL){aryPZ`JN$YUa zY*QvpW3@|rw^S7UUk%sh*!_g;Z#K88-0lyQ1>V|QSd5P^chRfin+IEPlRP7o~ovx$w+W9U$<0B(yuVBVzJv!f&UpX;b zdXIX}e_728RN1de9(R{ylDA>Lu+?yKVq{Xg+?`=gP<~N=iLSh%x5^AmW?Cg-+qCOz zXJwnsQN7byogqg?1)S9m=`ZawWKco=`SQ>q_bE9qlhhzD3!*nk+p4;qBRTz|ZnO5J z>ZaP#S~imAt=ug=^F!lic|11T^d}jxwrS@~t(}%VO}cA8Y0m+w3~0X(WeGXQr-S)%d_R0 zKV(~d4M&b%B~)vU+D&p2eoQ^}3L{P>jv$G1EN% zvVZN2Y-xhi^vX5v3@O77TYj1}hcugd-jS)1UUzx7%uh>=4QqP(bFw>sEtj)ddUMn? zFJkk)EDy%RA5l*@d-ppB^~;vOW@bB#-+d|tkc9>*(YXHBW*J%K34fRL3mNPCWy>RW z`8o1#Ubb5e<%1+hQnIfM=>OdBoF^mq%#Zgw7kskcdBw?x$yQ14Dsi6iPiN&^HH6j; zeCA;c;mHBqERS)t99oXmK2D-iXY(0z%}6@y2+H6BjbTwcT4ozQQ3O!Jb7A{ zjYsNrtA}aEZ$FVXP~(&0+RQUmmU2bONtZ_inT984_@m5uIo-t8N=4O3jj3+l{LR)l zTVTzB!*9shlzU%y)>}(6w2oI&{Z;0$-C2JX!xaAwbqkQgkIj}H)Ud14^7OMwcTSHR z7yVO;r~>k~_3I~hi;3CYSvSef?aQUx8k*`MYRLLX^);Dj^eigKMPIH*-;!tT@NzYk z8UJp$xO#`Ps!k$nC%e@x`o`BZIa>#|^eK1B(~lba!u`9mvL$!Dc9uNKEXti4T`HIU z&hP}i_5z31Q{^f+UXKpdqZc~#=p2Wd^Q7+K5y@LEciK(P&3x-=Q;*J-*`@h-((!)J z^&{A&XjR2#n_ z`|GubsNOL~9#WqRRjA;o@dG4rPqsITR)A+lbv6LSpZcgFyyR-hLj<9{2M>R|BEO%s&tZ~U^v)>)jo%N)( zIah5~7hl#r3gmO9JFWhdY{%%PjxFkXOs13TY35>@ED72cYUMe?oH5CQsXXnDmPxqz zsP>>bLhY5Vg4z;UUz7FI>-)_Zzt?%o2Jw6~FqkVlGUz^XzbcA+E>-iPx(X*|tGmG{ zHQv-+n3+HR@6O6MWS3<0YKbk|M;&tfKg-7F*UcOz>tB83!LBM_I)9xWk9;@4 zd9(Vjbxu6pSv5nw&UIGJmu(ZTcUJ9_9nI%#%$wy=AvJGSlX7VcZ))CbetL!Z3(BNN z56>>GwyKdSc}X>l|B`}j{XkXWa8-rsMRJPrwx91-UDO)B_2>*&N4j+}G7v-*JCNvvhdFV#R|yuMFWW11^}{1)fU z$I3o=k=2>n8fVqb@?NhrGIDmShKo*fwQrQn)vd=lNOKPIyX22Y{`kyE&n_u(epDXS zqd|4gm&t?NxhG6>I4k8rOR6m*_l||?V9_t+S=~5ao-5ROz17_OrE$Jljwv2lcku|x zF0weJGLlTnf--(;k%@iIDZkRpSh6#+dh)tJ1~wT)CaXjIEDxxu{d{Ua=lXtqCXRAe z-y%ia=$EYXqaSq7^61gcYBEwiQd-EY!uyhob&D~skXc&$8(B37tEuLfRqTGpR2rvEJZIIRy7Qq|oHsors#X`&O-ii_TA%ONNH#K`k@~-<_br!t zZ8u(hU%Jb-sl!xwINSUn>J}mMwv<19tFtO1XIy3#nNQy4H@{jO3FbZ zvaPkOpZdTiFM7GRV1yx`;aJ^4bq=*|C6Aed&iCmV(_G!NyzTv@45|L1&c0kp&gu!0 zbNhwzmvui-hqqrG`Rclqi^H5)f7`Qu&|WLgj?z!l`q}-`Vm`OfOsOqA!U ze3|h$W<*O|J!ipV)=M59+i#X=>QJDKaY1I8NPp@1pm!q>f z%j}-=J&AtKn^k<|yf2;Ao$Afnj2E2M>V6Sf+h?P*`h9t)>fw?BO^UJC*e(56O%3In zDlR;cMr4yb43#fZlUbRZsR?9XslJS89Wq%}o7Fr_p5KpE5weCiSXLZoNp{1AnU%{N zE-$#lu{!;Uh=-zg(`PLf$bGqAyO0wsAuN|B%W2fexZ(GcaY~8 z>0>pwsrFd(p_DW)`VYCIbZ0#)i^+Oa&YIi{%2fAzP(f|h6Q;`rYW4!vj?x=E>Qyc1 z$w{7xXB~BFbMTmRmkcWMA(&hf<}!oKyJnh8ZiCG)kI6)=TyN_6Ox5uJq;5MaW~fy~UDY6QrFj9htCvMPb@`r76UtNqcn-EAo zs;SH4NGZPYo?5dzG&vuTew$wQOeuTeW@E6FRQ0>$`9I$Lph%|BL!`~c_1YuNo2`7L z@r@cc?B~1sK!s0VbU+=^E1&(Sb+qsas@;z(sn=_z$A4iy^c^8y{w1E{?E6dacuv-P zQs>|Li0nZj%#YPV@mtcL)Gc~lObYCf^?519RO|cDYPh*GrjP&DdFLiaynK{8{;A3G zpOW@)B`qT7^dgyHm#VL~$mi3@M~|*bK1W?ET|=#In)79{IXe0&EM72w|x2~Hd*r!lp* zG)#}mtxA_#Pc|PZ<+I4S>RUq6e)44})t*VQwZ}9UGKl)6L8J~+n^a_KJVAevWSI;x*$=G~Ic2@mHl4yyc^Q0xL54|t@|DYk}$`ZER?Q?d>_1Hd1K0r3>IXB1r zLX0mpNHtOz9elr&1}8x=Ua_0-{L|i zvF^jtnh~j@Tqph2elqR7T$)?H4icU2>aeY6>Crq#$MZeot(3<$`da--uBTjFPh$$? zdYU00mLAnH#H_~*>v|FjXPVbjL3CUD+2&Yl9$)g4Q`*s!x*DXP0^xX&X*fu`(BwEp+2eYi)`Dsr*Bt1-caLxGXGQ4^Z&*6L(;cP zeS@ln7opN~&C?KVRb6+sIxm;@w3lr>S!~u{we}o+{41*SOAnV_j?<%k^ymdv^Vdp` zk6KrD`t>fm6_|VU1Y1im(b=xeJ;#&FWBm6rn$=#DT%kE2EAUb26s3~!C29~c+i|lB zdr+61k;|oW(WnQvgFWwCpUH>KYD$5Zs>+whN{y=PmHPPo&Z=tJ(Hux>&ypS>M>?}W zUAwZqpB|N-HU2y4kE(7`4f*1QEO4EvHjdD@t92Ne;Y>HXsd1ltAZ!&#PQ8@Xc70#s zkgui4{Yt)dveqHl%7}qhb9J<&u5WW^TYISf@IUUK>bWyDZ#sDY#MtoDY;%+hA7c#+ ze%E%t`FLwRWtvZzs*|akh&8`a<;k0sAN{wr1Zq4fhsxPepdJ9^kyd>>*cdMlfznI^ zW!7a*TFiccXS+3DsM(**Req}BQJ&=oDUUj<|C{ot&og@~&pvsM{ZHlj;PPL#kGdQE zZ^|?DKa^+w!OC-4^anK0MJUb*l|N*dcWrgrD&Ol?^Ym!IZ7bDW-1q5xMc*|Z|K%CG zMW!s$Lh^leoSB~M5$A2IoYS7IJ)6z%7s~l_n+22yovGQ5?yN^=S*>=KJQ@k8=cUE6 zQY(es;T)vP?N;|mKT}tX+<_(KksbZM(xbNf)l_<|^f-6&I#&-@K6BqQT1$_V0NE*G z23Yq2^%x!vc(IE$pR)JQdB3df@8vVy-ulA_a&A)fOx~}s+V7V`tFGFewS8u4y?c~8 z1Jd`^8IU@ur3%|wFxDj01FTFK)xdF-x|FQkrFz!&g!V0#<8~x4U$vEAmlJl~FRSp5 zJi$nYN2ZFJx;~L#mc1Uf8=iT-)H7%D`oGLNQ^S+jznU7UdPpbNqlF%;F21>`@~Zx1 z+y5orU-tD|`^ssSrm$A2dfk7`LH1XZYdLoB`~Tv6oGrP?$fMer&PRmK$G#8$&(6o& z(ntOW=i_|&X!t*#k7~)U=Vblz`bmv{m;Q3R@ub&5b)x^#c>I`5?4@uA9gp`(M@p3| z+23vB@duauvONC(WqF4Fhw{unSb37aL8Kl$)x1_sbJZh2MBYcgHlCN+5zhWK1&caz zVzN*$Wm?XGjzMxgo&OxCl`acUeGLOT~-}r0&ESNc~@?>zHg1+cozUSra?l@BQ7q!Z0wy*rkQh0%753sY817~ z8(uAa;VGFlqpZu5eIZZEDwBC@yiF_bsrj`N&C(7*!{(^czR#uIl`5@Fb<=x7y^Oa; zlYBHx?`P#933sN@LU7Vr5jVu8}IzHhdJ2G^3_Zf%@H% zujE^rlb!3YldpwGyUN@Ak?s@AcW#@UaiYZaajwskUmqy#(;?s0pPn)CjIej&$nZ>6 zfc9TYi%7YW^B;-KXfH7>BIidwPnj-z&hFDO*s7NtUcM^T$RU2+r~ON5Vwr%LkEimr*mm_* zFLS;w-OQO2i>!5PvJNCAmG(_O=cjMa_;0rN`A^#qOn3K{<){CYf4~2$;Y{<|n!7o@{I37Jzw9U9HJIWtC)?KeBH#72FECj1~&#~6FR_$qz1+-&2B{`j82 z?7g4;?919~uf5jVYhRv0e0h#po`$WB&$9pFecLhLXXT^Hxf-^jnd#Td)Aj5;_+$F( zY=QdFTk;3*nm-RfKZy(64{c5Mm#w~N&EAjnygXAiko+KT#Z=kz+GW?LRi`EUJu5!L zPR%FU;0c4V771L5w@l_235q)jj+a?=BXB7Gtd(L5F4;P|yzcdn znXMzxi*M8TLYK7V!c5gitl&M{a<3_4JyBHdzD1k?I1~RCNUy*mb142*e|kAvINn6r zwhlcj%G4PkcY6~FiPpg?5v-!VPE=+3tK>>N=}R}k-uA~Y03bX2ZtFKW*{9jrRqBII z_K8H14fEmt#1qau+Fn{RJADnqG^N51RrF*7m04JAq6ly5F#+*Mg5sQ}Ao!u!TWOzg z(7Tye(A$;8hUj>~cBhliXcMoRvcuWzgo?N5Nq%g0y88EQcsk)!^M27*EkAnQ-+8Pz zPAP`I1}1;irzM=MeRg2-v|-Qmhixx)4q}@<4-?aKCr*}{pX@J8R0q;gk3%_&bw003 z`&i1hh&dlXo?7P+WRZG>Z(e56WS776k1GlSd6uvA@#UXqOMrGSvPJoT6?s%`W*wOs z+#nMNZu*;;>^^AePr~<7Y|IiKf65Y#TjulvYlgu;A(o+s7iH|nIpToxN0)k2Piw-& z;WmHj589e6L3`-JQ${3C^rf#e`!PmYe*ssja{sO&=@b8ocTHWH}8yTQ-^K0W$n?s-~*88aagXG0X*r3^TS>7&*=S0wk6wV zl4SWsjK zZ*crgPI=cl&)It4apGH?_>|*+-|^pf-v8Kn9`Cfj#PPr8_;)$)f1S;Dy$#>{^0WG& z;r9@XHS&w%eC!>ggLArMBZM>1_vWBHRr=n;QxU|D{aIt{O&9wBVY6(CmWmfIvO2EP zz~aOpb%`gM=o75BujI)&+md8Gn}b)Jf9aW{ap+odGtkwR85 zj>Cr^VHfutSwVOr@kHwz#F${2wZOcr(o0^kdUyG@Y)*oPZjy7RP~|rZlF7GJJFjWq zfVDUWFfD5jT)s^yO>lV9%eR?GN^4U+gLgZa7S6>mC_dRWV&xCsl zG+zj$Kc`KNC!=|@R5%bHhc0O~05^PK9Evxl*1p8c;+19)W_Q#N;-A4iG|j37O+-RE8RRVQrMqkBoWR(pqbT_o6B{g_ti zrOymld6cG-l#ez1%SLsQtMB*LWhOp5pHTnr79yDR*=A8``iPuE@mb~RpX>ov<|mwk zST)U;xq4~Iew$CDxl4PnHEFBf03JU>=Vy}JioK<8C0<81jQTt^0#o7O%yXUfp*UIX z?nP(${V{GiicpkC znQp4ZZrrkwzV5yG)=kt;edR?3-qa73b6BP7H$k&u4Fe~K`zqe(QVqbAP8N?4Qm>e^ zgf5st9ZAuwnJ?%;yQ<`S@KfJW+MYRvQWZIcM-gZlQtZGJ>>9<}^{)GiJ3xC{#SrFs z3C~wONd_mbFs)K05SP=fb{#yKI+ov_t*vie4$Pvt%e8K((<=qO+O=wJvVY9#nH-8M z+k84W@^$|upB=SlFZJcUX5IH2HoRA?c3DZpL{EnhOa`^2qYXcqRDL>5`$lQNC-7rr z?- zJ!n+um+%hJUaF&6~2{=73he?r8ck{5Lb|yR*%Pgfz+L!g1pw9MwCrY*7pI1-DZ8i8q$w) z^ksMZzmSxD#*9~YyPI&*?CJ)+AG&X)X)f#352d~yvUill-DtlDv)V8Hy+z;YFbv7c z6Nt{fGl_1^YcnuQGliB$xLw%Hd{=Bgkg_%v>M?bthbdN1g&q(M6$OqzQGQQ_Ve~{7 zJJHSxbVZr-?33S9QRO@?k^i3W=Wwq%K%+tXryEpDM*(2^YLhPN7VT=>Fw7LR2c%y3 zQfF?Xb%V@CMZp;BWSV8^}kU_wodb*rF6@@vRy}f9|BzSR`w?_?gS&{#S(VQ^j0=7a^ z1Shvf?Lfe8@enT0_>nR<7d5MF4Q+~=;!8cVNiVBPy2?{0xX5Rn|LcK)Z(PP6j(p|zw=wQqH|Ya2`; zUH4i)x}r{Uz1=VM(!QHO6Oz{to6)(IG#osy?IDh0A8S_H7CGE1|{PFad}a*LKD52xt#QfKh|2wqA3{- zS!U(rODskEzEqC7&UUIocSh$J*;kui8YuF)Gd~yMaZ-U}ANLilqjP$1qS7IG&g`L4 z8!?xno(DMpzf?}6Rept0$Et+6rP3I_%GTe5*V&`$TpFYSb(_G?oU_}B_Bhe^60N~k z_Mq@}J>|npMq7F4{+z$wR^Tt)?QWj~&I0MLY^o#i=7H0Nhqu)o*1W~4dDZj24RAmK z?DB2A`s%6$^XFcDwXd{-&2Q4*8DVcg`u@~KK5zP>Dmc@R)#3Z;mA>!87fij@5pzB` zab30*?v6V0_BP;T^+&;HJ#U{Qe$mcly`rga-l`|e;}(Hn<-aOMV(uil%uf7sHL-~> zB*FR;J6k<;1o@Kem2&mnZ1X$2#D6y>j&R@7Ld`j)-cP*!NH4(#AG7WthJw}WW!3>! zYqjIA%;jz`C8uy+g0Gt2)4OcV_kapf=me+uGWE*00Xsu+wmsI}eps3dV1AFBDoMK@ zRMJmPNpJ%*qla=~UWy^WhLj` zw&Xm)mY08Wx8Ff-M`rf_QUE0W9FWFN)&PA_)w=|6w0}yZO01_cb;R`JNME|uD7Ubb zx2CXu^bw=fWGQlCMw0dMlAgS0%aH1GN|JGwFxTpN#5qewW#U9r_ydyq~G z_`3f((yIT33KS#|=2@lyB`Y(u%acg=-$OJ8Z}^s&2G(& zp*gyft&Vze92Fq7=Z7wAG$!BbXXGY zvDP9FeYM;C>HHquurh;93jW&HnR4v5&Lr%$XD6A)0dMKsH+WEwecgW=Sw7X`g#76R z{>;qN*StrdaNl|&&s!R)##SqSMqg%!(0ia4&eL$e z@bFea`sB0Dzm;4S*Hs3E!zD) zFFpN31gqH&ZJqay+Jmg81z^P8t}_!Fs*?^HHu1QT!iTM`?+Nxr$Z@2Es`v}+W<%fkl_~~E{MPTFC+U-G;-3kT8x8j)u&kZ{FFLNUrY4rw5i8x_??Po z7+V=$m=ma0l90ILH}UQ1FqAd81PM#A@hkmc3Oq&JcOt{XX_{3B@U|wxnONd`zlZ~v zecv87pzZOjGyOyBQ>W93<>>}E>c=|1-yy9y{qHNKXcVU>5DgfA+vEW(mDC|2w&~M)a}0ReIps2f7j?_xX!{1dBEz? zpiccjrTS`L@%Oa9roPvo4s4aYVvT-Mr?`p{>z^HzyA@ODiWdcy^_hDI1_auhB%fl9 zshgjpzS-?#50(Z;@obi0P;ZKjR8RypflzVssoC~?bC z)=d(H!iRx*_1<)c7$--fyHlM)4}PR=>sK)i#m-$?(j|^eT@I zYzZEJ&qXujSJ?efA)afGYYlW5%tY-DKyJ_p-t+HNU)^xM5gGUOh<3`;l}jo*o=EJm zspcia@B-(@g60mFgNJ0{xwZ)OJ2$|=@)^MJBHFTNO!pXDERVjq6do8pG8 zbUyZ~$MZ_>RbRPpy-_rULZS{DR7l(%&x{7i^b$IWk2g6wiD|#k3q(Tic*xzKz7&YJ z`D$-e=Rl4Ve5sfGUz%U$O)sxv*QYz9`EmssFUSAg9rZj=I5#SeE7D2uVuv?=@9-u8 zW%TM)w{_TW+J1{)@_WPf^8DgqI<=0Xw10{8IvzenlL1tveNvDBnAohQWSxy%r`qiiSTcv>U=<2Xuk=ii*si>g-=!XJdj6F3jpLN*{XF+ADWcQ=Wvm9bi?oc8>^s56 zJLV6rV+y$+*k1bLs&~Q4hxdq)c0(K89}csEyy)8y$lC!O&gfl0jSl^1%?MynMhIA% zJM%KHg=fKoPa{wv9yfVhSSD_lUS-pZbie^?$$l+gt@iX@O>?s2if*7O>WaSqgkFHG z8pyn9^epBe#tKb|5=0?Jg~3kmYeR66zJ&BkH_g=FHp@^U;7TQ|Ud6gq&0>%DXtRRzAmQI=(3yGP3eVoOf4o zpH=;uV4H)4T0b|($?Zhfn?&*5_R}p-Ylbvp)lTzhYeGLG&VJN5z|3Q9AO@MH>Ck=- zQp1Gr(hT(blC>WZ0S-nmi4~2ewpq%bJ#Lr~a44V;nQZR%AkWIRUAb(#K$XTydQAaL zhT(OgY~wn<7RYS!h+fbXmvwou{N+`f$Ja#=bAN1i&!;I4MaElM`mt`GdtH+iDHKK4 zciHckogVN)WKh$qVQ}`SH= z!_sYHkEmG%efhQ;1#4p%(XC1`KYd@nSf-W@_jr>xEO8}XG9VnVZoOM@C!X}DE6R{% z?)Jro6c$(c*=EfJL_2%SiE#7?sXtG%T~g`JGG!~~)!&;rt^1Z!vr%@h{f&5MKJ0fg z^+PS9!^?OUlDQ{2y~apkCXcW1(yT*#Pq2dD?uqz)njc~hc+K6uS-I`Si9RpPcnOQg zECC)-i9KxQryb9E!FO@TE34+i4Ya;2GQ_~*Gq`ctG46)!5bpMa9|;eKt!j&uf8xQW{codWLi_Gpc4ni@?H1P0h<7l#`gI%q z_nQ*-Sqq%!b%Ho~Q$LXBna^05wv=?G$K9w2%xV>g{#Lqe_5R+op-~y}2QBzs_hq*j zGRrmLLwj~48^&%C?HMEfSVMv4(d$0@CXu51rYLP4q)hWs5bK2>8EXH?z@yJt4B5wx zJsG*lTar_N2kJ8uF3-Lcn^{gbUD`mR^r3Y7STaZ5UBTd@ObO}4(>POgrcEAh> z%zST{eP545O!;t@Q*8QR()*UQ1Z(7@=(u6>>=#8({sDE8vS3hCNSun^$OWv{Fbx6l z_xC+-)!&t+x1;9&Yu;J{QeF)~)fZ#F^ zd>UA!w2x&sK(Z4%LxXEd-^p2dF0I+ic)f+|Fwpp>ziP~ehphOYGzheAYU`C^n@bJv zPyF8M(Mzq(GOi1;d81fZ-?>N(xb*>Va_!$JDo>`;L)Hm*sxQDxwm!z!`#&V^OT=*t zaK8Ii2^eqkuX*l{Ww-;dwAXO=t+MTEno)#B6}6@q)u+tpGsUK% zwAg5=)}?cWm+b)G(IpJP28uOPn9(+SL1G$bYA;Sq;XJJ?!3~P+-81KzmH5Zm#9l)L z$}-CGe_wr@z5eNZfV4*c7FJL~2zt@Y?AG7^YDRj;FW{N~ zaY?gOrw-DKyW=@3hlEZ;vlJ2J&<%L#)y+xjQ7RqiW1&@GyL%iK58|gk6>TOG57pyYW$~(RZ)&Z{1UFi%_r2NyWUXXuFnHQ2mBke7T|(;@ z#81x9%+4AsVa@;@moDR`1$GNae}mW+T(?o}&DlR-j~73ey$*c_LA(h~o>NHX0HwR* zVJgaQYJPw)>&8-_{i#Dtz*&{HPrmt`vqlWl!I`LYWkwm7Oug#M%zRBCTT9?jJp4cp z7+R##R1oD)ncH5jkf8oL7fW>fdG)xyUpo3_B^QclYFU}7v*(x3fdzBZzGBl=h5q!I z)PxP?=^qO+n>1cs{X}ns=GwF2-dfXBSXCG*-sJBGtga1qFBe!35$c`8`|Nx<7oVGU z8+`gQ>$Eb)b;?@}DjoUOmAhg%INy%1P=CZ0TGuPHxlAH{jW4rN_EBFC_tUEFCa4ZJ z!Q{UFsr{Kwt=E-wb@z_6m&s0JuxOd=ks4B`l3FG!>4HTJTd&U9-)Hx)akapBEc)nu z-LxlOM7eEKD9|C2Hi4nKs;DbFAJ=o4>b42#Smk{$w>(MGqswz0Ro=ns!8E2k8)h4y zqQ|434cqA5i}l8NGbFA|f8~&F@i5Ui#bNP3q+zMQvy#mw4BKe=W9ThVyI=Q#!*VM_ z`^zqLvt_2tg<<$ic#xfHwFng!Qplw+MJz(Op1l2h-$>S*47=qrj#X2()KRu1)A`X@Y%5d;(Z1&hjLC&r08`)(@z0sCD!o z-zrJHGuXg2Z}~((vQ-N3VhMg0>)r+8oQ5;UCY60o+x-xmZ&$JbV0%7yrsa3)u zydGuAC0$&eUXowV&FJN6-?+4|Fx@x-BTiv@$;5QoY30l{CX{oE9TpNOIxW?M>%kmS zMEn#6?wNg@1QI^yri;d;cBlGMPnD;hs7O6qk$TyidM~v-wIlT;H%W9qd3^Vd(cVe> zOLnH7?A|&?-r-%7UM??rGjHddk@=%j@A{Kn`FZ`R!`)Ag=zive^1MA2saH!rNFA=2 z^apQVcX!WmB`=hx$gpeDyX7T&^FGMi$-OyZE{SAnt04+xMnT@r)EFKn})?2u#VdQgbH~I8(__GjYEh9Eyd5-*alq-!1Yz?G=%1W#^9U+6CIckd}?QEEnD zY?tB(9RCC2r#Rsc345IIM}#Lj;g1OyI^iRP3kdsC7xlAGHn9Opa#7^HNwF_o zHX{HXp+sUO*9r*ldZZh&vS&VwItblc)K*d;XPcg)399`bs_^u5!{J{CVBPp5iNcA&?>~1-u(5+3U;ufHM5a{wnNR zFdH42hk$4rWXKyI;*;lzzPy7RGDnw$@VMZeFiD`efRfAwEts<~3=sxBQeaIOEl`UX z?3qn*sV!k27dsN3A<`7>3@1&IT`p<{p;?e+lfL_*d7Qo3$*}<#$(#Az zZ@_yB#_k|`jB$yXICe*B?ni;r?TM$6IE-uYf40z!HcFFw{20RXIbyPaGuVUgWh3^d zp3mLS#^T5!wose<1p=9wF)pOLoykr8I*6JBBB|Yh)El-6YG1f4b!giNGx50n+lYeF z4-pIdzsAdFrD#gDL)AdA$$Sj`EW5_QtZ#6q zo%P*PYx&HW2CF;x5lz_9$Z3+x8*% zI5!fV@!mO;V3P^%EZL9jo;h~;DO@}LC3kxdv4qYpM>TL)JX7ZW?&Ia|EpziKGD{xi z<_^1*lSo9wo%Yjo`w7!cS3WTmHIst0q&oBLiqt_f+$!7^J?;t%r3m;h(#f2ev*H(& zQ>c5(i*_*|(|97BLcc(Eo_6we5>w_$D)Sqr%<|NGfVO*G1yf~8^HJJJN-HbRG(HNf z6sH@jMPtNJoSydBPr#`1J|4T=l=lI#g7H1T+r6%=oePe%ug2TGXB>LTpGJ4@IjMYX zS0$&L#=clS_Qh0pcW>dG&T->tgnR9kOqeQD-M!b~8~))aw zZI8QT?_8emAABbL+}<}$?lx+5CHuU??o;v-A(-03rc6=T)WlHDSe!OQ8J~Mx_r*6K~ADREP<|u+J zKT881KAF=1mntmVhwv|MYq+d5$})fIFPkS3i$;m*hWmlbM#vt)3^Y*mHR~#fUu!*= z9hGLJRc^mYM8#4vC+H?y?uK%BU61{e!%}8-NSbitkS06_gtcb3EZW)ieY&CSon+^> zB@{{Oc6YRai@t}Q{xh7j?-y3xE$Y%T!|$@=o58*2tqnBBT#J;0m-eDgVuc!TAoixI zuKm5cjSYVtdrimv4G*(RL{=fx0Z$-v=HE%rno#V$$jtNpzTn4-p5oiM`jQjBc5~yX z@9VMHxAEsMB~L%)sXdqLkqneD!*lENP@BX1zH0=$H|YS-qU{>*fa?H;gB`j_NVYIGAo+5A!J>F&1+3Fxld#7p2Zz20DT zs9%?%!V3F21EGFh7P8sa2q1H;J)fas>>gcONoyvDOIOF0$*GdFwD&x^+>wi^cMXYv z$=;V31$O`6Xw}_3)c=|<&hriSB$uBoRiRRla(WOIDW?Nbl5+ZQt~TuV%xzS*;pYjA z{1w@(4;QCBX+y81ZyJZjuO&YW8S4B)>JH&2F>PL0|uEBoaX^9*o%!)XV&<3a>oG5Q@g4$ z^l!*omWHF@bGPplv8U%YavRoC18ak*d#f%&-d;Y&)5e80fb+qO<#TaoulV9-h91_> zz?ezCsasReW4PiVU}`HG?DqWeuF`|C_XJ-ViCA0~JqOrj!d*&(_lw0B>&)p!5uZ6+ zqz@z|kIaC)PWEu+ayR@k)t&6;D$uPYxi_DM1VF@U-yy!g@mw6TpaUzDd+t`F-GZ`A z#S%l&$E0TmmM->~_)=)JFAq(r)67Ir8=&d#-ie*_K1%yOLSA&v`IKCfgOhsUK%5n{5+KPH!0b63EOgU^Uh;h4qxX`<36H+|wVJ+LIYK zBl$*u^8Et$jb}j7gh6IcvWv?h$IalAQ}6X2pXKxDE{D3=gYW?~UeZ;cDt900eVedd zFy(%va(iFN4gvEC8WBQ{t~kgK?fo;u_fv=i4r7U}g@Y{dPJwJr%DCIVLzo4{AKrjH zV|Gdi)y<{x)&3Ow6Zcs+v$}!7gATc(sJX9jompAiXZ_KR{@P}uJPSkFRuCLS0b-Jz2J-)FF7^7%McX!9rJks~-y_|ijLO641M=(BZ-Mm)Y&$^h%Z!9BaVCq4C-Vyjo z%d~s*6HQueS-}wDLp82@8BNOwqe$$k_ofz&KGLf_0E6;)egW4*Wi8p|pEl#x#}M^T zeY!mFAOl!j>c**LAzZR6^*k1hKq|kabSvZbBvY{0&d$cb(f08C5Rx{O+WRjIZ0pgE zVZ=H(KC|>HeMR+tQeUx%70Duav^CS{E0Yx1Sn$Ln?@4DlroM9iPo8X-GUMngU+Q0f zL@JDZTZVERcGlYlk;d* z=NDjXn5q*+)mfTVb#_x!R-uSmzr2yO8LSn=8rk6MX*bp|o|z8Y^6{AR0y;z!vF>_H zl^Ok~S0j5V`j0O?US=}JAX?G$oy|wEOU*!ULi53b^E^+*1mCxVQwTD_R;-8Mhjwrx zK`hUTbrhy&68G99uWlVA`NTIMcXfY`!ZfHat+sZpF#|?`9%h|*(}|?iSELTJP|%y7 zl^cwWLH+1%h|=bh-?7RWX2a>tuj^bFLvh;UGE5T4?kHj#&L8i~;g5HT^w4IRF0et; zIVp4iUI{FGfUXVD+-u8}h@q;d0DFlU?5_g_YytYh4M0b9R~N5&M+6KK7dgV5n84jd zZM-7DxeNmCsdic-eqD5ziMZKxFAbcvHa7^Ty5vVUwiV}is7%?;rW92>y|chi^bl*N;tQ#>b{R0R5b`YW_K2Jl#hmD z>GX{CJkv?)E0U-Q7YTpt!NWzyx~JA@su0#xfm1q?!_B=LvV6Dic55D}9Mb7ezt9EIhlU@AM2{{dlb z(VK|c7D)ZhpIJT0dgq%%`T^hFWdqaz^Z5dubp~1AWfha{K`ticYz8TLV$xRjR#c|` zQknW&=b|DvyV>0AQa{3iySwAp!05Re=4b&Sa9`C!d2E;a%k%acgI=8(Z8?= zTy3Y%+b&Is-e&v-O5bze^a{D#)EoopCRK%zVw@}$pwQi}^*Bim4Bm0}^JiwV*&Aid zS_bWDx2(rE5`6cbX&7f2e4hKdGb?FYpHHfOYP`(r@skO~$M^fDzMq*;;Gg=tD!Vy-BfMavhl2Otg_M7-*bNOe8LoZVTY$ zshv4I-=0UL_GuZc!1@<5m(z}dzOCX{>4Ym)0$d*f)<w{<1l;92{M`pegBf>wgNp0k zH`+InkG*2B5bNYKqpT8LQRETud0tKi==c|hmtar~B9Wj+L^rXL)h?Yzm{61&t?k%N z{q{Z=ZIm&TUTmnoj3G&2ks*J&2%@eKc~=(VEcW1B$v(gM1=v$k2OV9Q6+bfrKh+eO zxYS<%^`|Fn_m?bs90LU6jd7RQud|!p(%p&2WEW~?6+3<{ux%v-KadJy#1$ zd|?AiSA2P@-@T*v97DnE=3KkNQ7klFQ*T4}{ums(dx~wy>tcbZ@$b)*_!%K7!XF%?@MmX=!;5}7m;mp2w zYRt1Uv_5yN9G&Fw+UFcZ$9{>1LmE0BJ|b)IfC?zwc7;EckR+6)RuclE?Z2X^vT420X>O`EW~t1z$l6g17Bu+Q5)}Q#a(!) zayJ*X8GpSYBP-uPotSbg_$+pgU~d?g+>iD6e25sm-utl4kJ}Bo46)=O^ec)gPraBW zVR%`YYx8N;=1u31_m<|L6#K%Ue0Q%Ezt{362D6Xc?dS58P1drPCNTMCxZWU&XYZ_n zg?*jYe?!y;pN>6IcdxRj_pfKdIG2%T2C-I?0d~BH{jXp1HE4dD~>*6;2n}joGr=`Mws!PN%ty9 zLe?a$6T}qGTm&P>?%QAJUTb#3W8Nv$El;Ue;oVkZ-@t&g-L3n>5!)+R(91u6^M9tN zZALESKYTpIw><8S$lEquGIUiu*Ofe&wo63B(q@Tb9<9- z=1qEcEGuL^dG6of4M5S-Ah-krBb|0@8}TxIyOpHD$!*7bliQE?X67Hl(D-EPneGop zCiji;mi}SYr^&IYKs1d;H_A2j{pa@7PaYV<3MFq>uPHB$vlVxP`ypCoC!@xxFQuN> zYKiN)BdM1LVadYL-l~C+I*^)BWZe@R7_ha!%sC%C1n)>K8U>6K*fM+lC{D#pf8JUc zN3SVm>w^2%#bnfcnEmHNf<$!Y%ML+yzt|o5vh_{!c2H_>3Z;-E^Ox$F!pQ~ z*00U%zSI%32Nr!@cMpVtG>|!G&H0A6XmcznxCh~o^)3}TJNIgRnX|rfNIEdga8?No z0@)XlrEi?S^gz7UpFWp8&lm`HTQkXJ4>;@_hd3mvz0E%vEGqFRpXwbKKNr^>FR=#? z;fbp!`+B+t23|Q*p6c~I*UvU>Z}QK1-ovlDA-?xsq&biUgaYkx;Gf64AAGRo+KMT+)7TC$Fhgci`>2ri`_9f9fUgMi&VJsrRin zIUNewfHdoD%3bmeI)3OVqqBh&gx`R*O$@;L>9wr?{n!~NrW$MXAV7Tgd=MBL27zR( z|6gI>D9fp0ed#$;TH1&Z$wP(vX z^KRCxQsngQZyO%A9EP8-`6?4<2!lY*oY^o|_xOc~gUi2WO+mIe{J3S3i0CsPm?FNi zeU4`Y*KyTRI=2ypc^x!lVceWR`DHStzbe=Ff7c;gJ2=UUt-c6HvYwYAmaiayecc4qHA=Z-p zkgsS;Y3St{bY_(;_KOR2z4&X?$G6?ae+vIfbjr&Mty+&QGdg~zNFeDK$ZcrXUil~p;@Qq)LCoT zca8P144~(*z-HriXr#_!r0yYg`Opytb3b1+A$9YHLgwa60Xbe&?H+%9(Y3w1k%inJ z_*asr!!gPb$W6i)v!5RDscNNgmw3X4#GTR;{RZJcpG8r zon3<7^%wVerqt2ZU}|Nd0;u3C)n}`V2^1?(MxacADgspsEG4iMeLOmnA8LYjHXR_i zP#G^*rdnlKhFvDVh(OCyZ+iOun#C7ty~E?4D)Z5B>y1^(tP%xas&;1iOW#^?m*`zH zW@pzd^!`>`Rw|&FnQxp8@MWbsHhO32UH3DkXLk&=9&fz{)_O(?g}Q9c!C&_M$`O}u zvmPEyG5B8FZO!~b8-#q?^tI-#yFgbCuDMr(2+kQlu___uzcBSXV+FO%vA)_HT-H_~ zN>{ps78a7a%nqCG4^H06QZ??&-%wyk(?zY+KtKAtg*H`%vq$Rti zZVPRb5^i64Q((<(5`tEJg^zzrBZ8&=)#|?n4$4eSAmyTJ&0~Uk5L-5Dc-|_dh(Y~T z^d#<_p1sLc#yC53nYgt%G|)z7m)pw&z6=){@Uu2*nrxJJjfA9<)(-*0ytTQMc(kNg?XHKPgA2FH}#;ij6 zl{*6qK{Pj=TK*7=Je*Zoy-bnT7kSjVvJTCnhK$v|p8O&MAQtP|^EHt#xa%fvp*Ws) zrH^O+$hl~z*XS}j$n;vt6LgyO8<0dNutn{yyhO(qk(b81ga3S^D7!m;q}JGdkaKC3 zjv*I1U?2}=Ft0t|`Yzjt(#MKS#qP+uzfyBoNZ(F&ZW1Gz`@8iM*#897{mZ#@x>t~E6&HYtD{kqL6&6{3O#6s3-O zw!Qr{WpY_#z=~G53)XymgzT#}`!;$?ic35TSA=|pxFY928;!ULUHbiXkcjYn&v;TGTKcx_`S(%`95$@WN**~EGbYa`g)ZQTV7@V(8n0@(j*b%AEe{TxycDKT+~ z^?d;j<`Lg>&O7z(CY$vv+1byb(Q328C#-2elSBNDd~h}v8~W#}%wbI`pfW)TztEc7 zfTc^vrIqvn6gn&lKz?eZ_4gpny$$b`~>UUDv$eB$)eHB{w2kpCP;ebNO^~^+uE{q8?CT8d*6>7z1z{F zzwMNlc(CtTYY$-AvhykLB5uutI{xk;@e_36OV08gpbmHYE?m?vU1-PoMv6d&G8#wn z)>QoFxGQ4)VtW1p0)LDaTo6*>bZcj{Hb1J?0&}(xOE!HWl920 zMPFIg{w-=D>sqpANlo`H_nrv&_I%BknKe?7WzISAVj41v7rxY}OO?Uy+Ow#yp_+E7 z&lo4aQi}Af>7=lF)V}1bFA#RQJERB>2Oz<*aGSu*Ezed1>2vHE$B@@PYawZJe+?R?!jkP z7iVV9uoW>a-W6EKflc@Cv^BE;#&sIqoq`7Y#yfPu;@94h*i|N+Ry<*hjPe-ZSM*lq z9Z1eBa_(ampY^A2lGNfDjV-c1;JbcEt@6_TA*}X*@XTaJIkqqm9qwfvU09}1-d)g1EH+}MKm?jcL6VCNSY*_;E_Q|`&bY}Kav1@r{ zpl2{WewA_@@NEQaS231)zZ5q;D4+q(02YaqvqC48QnyHNR{P1k#?EX_vEOy*Vi{fH z#jA134_f8mz16@^l9-_=mCIlt*{UqX5@^(FN1mh36-9$q61Nwr z`@P6Dx+4y!Luo0rZR{1~@u&7}5$D!gE_yF}+>cn3=nIVqz9m!UvVNsH`C^c_^CI>$ z{yl-=^nGw}COGh#^B^`oavtnaF9mUoBl)2_KFR&i*Ydje7L47Q{P09~`_oiK%!si& zMYglu56%3v&e?S*w{hyCd!*m}z)o-X`zKY_KEZK;aVPq^-<;IFmy57=m3Iav=paXT z|7a47s=0LRvE9|4_(k(O08LbZsvbT{)qMhVTnh* zPR`DY`+VsR5nv$mW6>m78K`0<-Hy|Pha1SaFYj`SPv0=nN+>{mP4bh@CkUjU>RZoS zG(fGrY@F<=a4|4keLu3N368!c&0}PGj6G{O#(Ia|2b@n&8|&qvcric%Zh~DChpidl zLY10TInH-?UulFYpL>m%&6;Mu!h2Jxv_gBsbQ_SE`6&(mOIB`qQ@@uv(C14f?#+=< z6+0xI1`kr0rDo}JoIj%7Z1k$wV1(Bu;?g6z$c2IEUi)*U;No$E$Qw47r`|9cZy@t? z8>#H;XDU)?W~Zx3i@9uba*w;S;wOY2?yR^cxo7pvRql3OK@o6oIcOh9nz`EDeu833 z6B}X|x7~0L7c8$Mx69o*pJ>dl@x`n`=wiPz>;^1NSC$@G&hhz*d$FJb1hodHelRaH zox^ap#HpCFfhPssrFlbK`P?RODgebLOk_=z(M+#NUa z)H71usv0ib&gEHL(#(E}9fOjIMN9F+Oz=gch03OTrE{K-(vNd@TtFHA%tc(TU$J5N zMqm0$LF&t(lyd(_%FytOzJ~{IxlK*HaC>=ify+ylzVABYC-I2zD^jCBZ|VbZ;p?c{A>!lYgr-);mq`;qJYKPVf=KS5p=1dM`7Dw^1BOvEdf} zj)EJLg^n%N3-Cw4{cpVnf(kSoAP35>%G!gyhZxz6qm6h2y}Gy0;V0?E;P4%LbqQ-{ z-63Arn6#!|u+1c6FB31;p7J>X%-)D@-=g?a1miCqD#3xOY&u*`D}IudXhdta-F=s`&=uXkRjr z-w!Gi_p%B@Pg~DlHZTC?Oy{0-pnAiXZYePk?#?Lt$5=i~I_f872R(*r^4Q;N; z;UA~N5E7?uGF_B8`KRREG8T|~!-x@$1DoLt-On&OwW5gYb)4v-B5i(n$a|?4NIG`u z1O*DH*&@Dpp}XS+%4C(#jP>7{@FDA^TR>T6)_K&)qKI|P%{)SZSVy8s!G75K`cTvr zCTgG6{_hfR@n%1IEEBR<;-Amzhr12)vVQfQ!D6P6M_=mUt7Ut{WOuYlA{bO&BATJ5 zKeA!~lg2`By~%Q#QvDZ8%v=UQ(>5SrjS1E>Y*^PW zvSIzzw+3O_xW>S0-8B^TW1<9R%-d;t zyPeL4+RpHE-Kh1wB|>#RzkhbD zSw(V|Yd7%4|J4}UWe}3K=qww2Q<@?$l`*{lf7WP2PotiBU43sXEtly2qr%N6Pz09` z4Do}`@yV@B)4KE8KG>gl*ZKuLj8^)6X6oN2Gg{X;>wV(T>&N+eMqNjo{(7$mdnH}H zAacNZg35;BkIaizGd=5(!e#wNbkj3xrjuKJ0Do;?Gn?{)1eY@$t*65%ku!Q zN(KP~A1iO!RZfHWW3O|vo^*L}-$T|G8v03o;=tDoe6x;*uhCcqjsf3$3v=OX9D;8? z@HPKa@Bu4(hjFzZ*52&Gnyi75>_u0N*A#JW}mXfOv=uvGM+E>;9RAJvU)v6szAH8f|Y5Fj8!xClxvNwSqFlI zYxh)pE4kJGHPdtrU{-xp-B9aiVgq=Pn5;dX)=k$cG+X&h|G3A0g(tQny2pQ0`>3^p zdVGtXiu-bJDq@a#ooO=Y<1FFwE!kKT72UZ!(bF-wq%?27JZQe5$mC5 zJ*`zI$w3V2!BdnyNr**D*jIT2Qst2>7wiIJM!=876|ib(?kOvEc`wg8%-Pj*ZXD zfZqmQyDN7j`~tlku(F`<+2nx;iEx02vjF@t;I%HV0?OkD`Qtyrb34h@4-S6WkSzF4 zJQ}_wNt!mQ!_i4uzh?77chuAhp#xD_}<5DW5>&bijmbuVcvn)BO4o>qJ_W zL)}?@+l;pl!2d1i!~WEBKxhkE9bEHi@9jYR(#j6jP!FOx1ENjh?OIL> z;p%#<2IxqcS#_A@F}shWYt4SGR=)Ji2JpAhmUd89d1{~TrTYO0Fnm+rv?}wZM@@L1 zY`cc!0Sov|^S66_qe_d_-CW$mY2v`in5MYvqx88IyRrK3`6DNpp)=X5hLo+r{?F1h zhs==sB>UgL|HZ)nV&H!<@P7ja@{B>)Xj{1&&wur?OlJP$K%<%{*Jxt+xYLPu*=I< zcAjUlUF6Z}=0qcrU~N1Ujd-f#@nBPPyk#)00MDjh@06R9zP>sXPQ-%4(=Q6PnD#dZ zV=bYUIE}Jl_0$el)Z$qYiZ^;%5;ZNgu~4(>ZW%<>-XGlTxrl;6Nj&NaMMCjVbvSfg z&@+F*!bO*O!l9a2b!_EvuHorwW5Mcp(5b088VwKP1@!&M)4S8g^3vb}e7coybhz+)$ck`lGG z!IqZ#L^w<{ssEM-JOP7A0Z<=}Iivz{d8W*X$HHHlqvix#L-DD{9Y^|qOMBD_AiSwL z9E^j=;YB7Q%OVh`t2t4#EV$C;)O&SxTr~Zidp#AGR?J`IsgFgQJd<05pe#xG%b|>E zC0}kabUhSbWePg>yNg4SI-8z`(i?0B6&(&klzZ3b(3S{BC6%6=t>u$14N#wmo+8>^ zIaL_A^FKUu7R;YtF=tUlxgLL%ee})Lz!&phS+g}DjV|JqY=$t4RefvCRYSv>#Z z`3t^2-w@dRs58(YL_;vS=$I_R2No#gHitSd(WvxPL0P5?j&sfW2Y<)8su(yep5gsB zjs9EF(sJI}XGfwf@z}JcXp{47hWoT|b#)}3h%|&^(;~t6P||7PXgH^z>|QhM03w6- zKS2V^=#>^%IMfu1yGVVUdj2PyJafXq>WHW;(QJ3|CulSrZ4qk{@!DiH zQ@^_?s}2*@tNg}cfK+&<<14J+W0%@~_W5W(d{p|Q-~Ug~_mTfMSmyM5(D~(tvvL1l z{cKq~bISi`%PPKMU|=rB<(XJ+^~;9kXMY(dKKp#MUzd~i=y(6rGvy~H7f)|>O|ElI zW{cuE4X(*yegx0O3r#csT@iSxD;`S(UG>%B7IqBg{9*9apH?%?pZ$2id46!F%hg5H zZm<1zPq*#&uU=@gX_r5;9QjlSgJ@2~U6q_FiLI1ekJchF5ULWA!8(`!>;;}EGI3bs z{9t@VG`8#*FZ@+!6;G#3yKI<#6YP1u9a|Tyjjc3NGh4Xxq9##aAB-UkqMnu}Krk7m zPe0F-g)yfbMVBA5AicTpSS1yobDl?gL1Bs4CL~~-rkUD#H*evB`JU!##J=Q|-R$f; zL_|1L>p|XlnnD1_&QF)oP&|#*EracZizI5}s1(O|=Py4-BqGcy_82dXO7;&*i-($M zL3LB}G4hEy9wRzl-OzH3Xw(|XEQ9Nkubk(p47C^pM52+}podI@Z>pkS_taL0YZGCc z2!gR#G-mhFmxubOwvnC-MjC>HZ{}oUknznSRKvkHHVa;SNni-6Liluw8_HzJp)ne> zLHy*qa5U23T5RhC9vddn_#Dw#v>{gA+(^fLf^-cGqKGVQh3ddUs6GS%I%H;#lq?0z zuWkx@B2lO&nuut)c&4oghQnvsx`@k^C;a&%Ef8O*HYCkaD60$UF%gchGzF?WJDoi? z2Jt+++QIS`RmU2F@tjhIa5Y$-km60m8`T15*cx>_OPETSMeL$1<#?ircnhs&yoDLp z^!Bjw=7dcP)Z*%)qUk*6FI!#~f6!w~bwhBl6&qMDTgR`HUmL$xe$D(E`7PzQM9=Wx z|NZ^{gM%vY@8eg-Zw9|&e*d@j#T44^;Wv?AA-@8CE`I&c=fQuHMlI6q;rAlHo&0w2 z>*BYO--G<_<#!jq4g8MA^E%=>`L*$D<##W2-^EYL>D80#uAUsOb7lA9xXkp%rJ1-( z-=NNpN8^{>S|-1(eVQZh4?b$*aV8gk88xH$%Z-h#uIifVNL@7I^0+Px#cQMRvX&qt zySgS64#B3XYhVp>mj`iMBpvXgu^M^tSaq#=PQ;WWfjUxcCVcV?6IB2nNut_X`*mXo zcEn?d9K2$JT}$BF1i}D67Hw(4leQrbnS!g?h5STy*i~Iu-Ark9}9hK&Rk(css?^$EpQOLv@HM8%zTmgVn@@V$G5? z)uEO!nZwnwCfpi6aEIKBHZn`8hF9`l%n`SVX%1dAqQuRO)ws;G>p)?+C5pq$8g~Vj z4p%iwLomT(Q}uNy82FM~xCT>AAd2cS!K_q?ky-?vJn>-s20;^Ph*5APgldGh%tS@V zu4YCe22pV9MpYSUSz$aRdjy~m3urv}t)Za$7bS;Mo1@`qgPxj$)#PbrvMo1ey1h9T zqLvuF0`h2+92FI7P(iUKK^sF?luH>g2}L~Q2$CNk?L;27AiQ|6o~~2?JAgcCjjrmJ zW(+rYE!C#yT3VPB@?_Gqv?Q9y+7fSUqSkn$3<3B|D6#TX*OD7!kE+C46;IUZokN*u zV1|+sbs~yHgP{Y&L_E<%4`QmK|M5|G>xf<+6PL~S`A854aB3K!RLh%qR-Y;H`PR=coF`| zi_l9oAfI0_tVA(GlK4FH$l$`E3vic#of=w6FVzI8RxULLX$m=mwbdGH_yV^k7_7&E z*cEPo%4>p+G*+Ip!y2q~8j|?Y6>=#$2+_$6)`Pbi^aTyF3>J%rS-SjcpJEF{dw zLJf^nYgZQwwdj2mt{4s}uuNEtMI$D2RMm5&Oyd?GyH-uiG%QgAGF&x@I@k#=N+2F= zEDQl9!ZbAzrdVc%=0&8=BnF`r18Y_l2{cFZBoqiE2{e0y-$aYbwEHEo(j>a>I#+FV z4Wt{CPqT3;vQ|8}1<%CO&CCFraGDr6@|tnrT5@Y4Svh;59qt zHizOSUvpeYu4NSPqwD0=$!UnnZKip6us&P`p>mu?IiZM>v}j1+i36hj>Iae<KlfOVH36LPi){&965q;cTxtM#CB_gsPX_#IALPxb!veB8-N=nP&C_F zCby|sOou>}9F52;kcv+a$fGdi3%F_wLMymIwW1MH!7*)X)PUnSA#|r=L`AsBeO&H( z0I0^O1R5SDEIjB3zEInksFftZkEq~8jNG9HAu|N)N5&9{X`I$#h`vr`OTyQNmNQ~% z!_^`BGAzIlb)kA*gsWG`QAq3s7fy`}qr?-X;~MOQnb+unQHN`Q35Qft)Fe^|$l4|s zE`Xb$F|ZpInoypEh=)OJP!&#?&Weh$)keh-YB^*XK@X{o!ZB*2m(k37;V9Z<@PIiP8srg5H7_G|$O=8zhmiC54MwXVpcMs0Xnv&9 zBbWzOab$T&e4tL;QXi1D5yk;Ds z99PV&4l-q+)`13){<><2s!oHmE{KFAaS+zqf`?Go69c+N>4H*F1Y2EHEZ?Nkhlx*(*XD2)tfi3`6;f&owHf#V8g#)?3H<13}nwD6>=;6+>L z6?_H+t^_yqB^?P1G`#`-2#7fGSdf#qOir_S4Zf_@_%I;V6c=^XF*L(;Ainqmo~WlT zRE_BaWEz-4VgvvXV&w@}$wJga8R&yJGP~h57>6y^-Xv{!&9i&_r zHIo56R6(ew4wh2Ku$O~T2kblP3h55ro^oD8y64 zkm#a+{1rGFH+3*UDnj?A7AOtmv%n|E6d^P-3S96F-Y^_+L`aagh*Fwno#A7+K!UDV z@2Xn~8>W^Z1RawLMCjXSd$`a6*b12kG7}~m7LQ}=QTUN43U-hx)ySYGFeGefa0SCP zXfeUCI23Y=DU)gm2OCiL8ukLp01Tf)M~#sgVYaXgm$7U<9B{ z>@_Mo5|+*%WHQqLLLxN8cI&;~J|j0}z)ULpu>9 zF%!=OQ~V_uOE8UOpj9{XidhF`Fy}CEK#sx+l}MQh#u3CVE=Cl?SYS$8GO$p8aKq3- zu+_A@6$T|dv}(mu9?eoKTamKH3u|h^qg2;mYp^z9qJyzov5a7ABT73UwKj&(lJOaG za!s6xpbzNORs>g_JPml;h$;{9O{-erD$3PtgjcZDOpEZ)&w?v?u@Ytoq10Ey6KnBo zQ)In3BXeR%0~b0(u?*uN9B@RDc;eahXaW3c6%mPxKP=iFG4caXj0u6Slra!p59cz8Omy7n$MvCB zSACdS9F7pe1cf}9z2(p#JfuN=*l789&4e`%!G$s4nj~ht)Q1yHkZ?^2G&>5LsfVS3 zS@>DK6q>7~Fxo78JfmT(cLxY8Euk^MwT4X97>n1~?O>d`XADe(1R z`n5qb-?*!RX>aRFc}A0NQ1uPymuRFK{&;4FfzQa&BPyjl!>k&ZCh${gC(LzI`+R_jb?`sfKZwNJr^}>F{hgpKg7No~m z7>5zvz|2&Rh!0Oi(CyU1;+Vprre=m&LpX|%#zj%VrTw@jHyzlZxoLw4p&`nmwK7Mc z&Ia`>jjI6H4m9X79R|q-o0^8Mcw9d4W06EaLG+&^d$nCIv!+@~y zQMtA^Xe5N_0BNN7VgXR1gb$ub3eQ;V@Dmd1Oi&u-7|DY#RN&bPE}Ssf$|E|UDHw@O zi+Dy10eL7Q9xsn!X?zxLd4vvB2>k<5I9rGH}R`i9fm2 zG#q3$-inZGSp>ndEE0k>v9PF8*y`j8S7V}+OWm+3X?%Dqaex^S)r=FN#lXyDK8~6S z12YfOnzURS!Ig4_3-v1J@@gCy4o-`BJZiZ~i{j19-&7H-u2-00gA0?Bk}2LA4#H0% zSp6hP!oiSH($G2S92S2S6=`7nJb`ns7wY%CT+`bpexD(XY>af>rBZ}csCN5!lSHEs2$jIDLvYNc#(OY{)T6R7wmoF zi%^4vADXR_q0SSPXfP@&mIP@S;Y38BnYnH_(JC4buSA1taW!G1kf>>*QpPDY;A%e; zvk}E0kejNnp{ttIJx#Dr>VS=?do*Jd$>L+)!Zn&HzEszyYAKUV@K)PnAoC#WEuLLt zOmldiV$AQ9l<6UkU^30t803|T0{b{IG#NahqzS8a6S@QI59FkaAuK!!XWF4|#iwkh zAFMIZreK}Q!H!Uk8`cZ~PYJX`1P?AoZ{jC#V(5ps&=IbAjbLz=gz=>x;x@vIo8a$i z9wWnu0d!5;0OK>I!SbjY7Goe~$_d;dtU$_uP&6402iKfi^=Kj~EUTTNR@gGGA<`z+ zeUzLT0Ch*19p$U_GL=%`v{OgXqJAf_#4_$^Q#e2ICH^b$N% z1nggGxO8PDULL}gji*Vw0EkZr2#g}3W@wOQ9@7TWswYqiVIU@;W@|3cggPZ;tz>#$ zFVB!`(@G$VR7+1`HYukWo`PpA*%3N_B@d=UA`Dm;_N!$$pd*4@L6Ig)5C#U5jRev5 zfj`2;5Oo@j%Dkj%NZ72)M1lz>4`H4q3M0W4EjX>b7dMPVMVyhS<}b`lp-TBtbt#=C zO2-qhl1(f}nRz0nxMcjlHQss}y?pueC$wV_9w0MCe zty^y~vuIWljcH=;LQ6H%T~=I;EXEh0iMV!S;Td@u)kFxzgybt^i;1?bgz>tfhB{o) z>$K?6j9j1-n#C8I(ZXp2UK0)+M=sdLrIomb0-8}NV?1GER9a)1!&{~>3lj1mt7fs6 zW@AdnZB)=S1Yb5$JOE}hu33I+mY8U+UTKCI%ZdVm{-7y%C<5}~?z9_=7#bqQGuwk< zHX|bhebAUwfvaA$imx8Qli+BUMkkj+*xYC)_|1(gSsep8%_#cBhH6a%QC>tS%^@s* zxDEOR|DX2WJie(ajsL%G*$c63ih>wqk+qghHkTF(ZJ|J+6%f%RZPUdr2}w#Ric~>F zMXUmff@2*~QBbQagNjfU5f!y6I;f0v6qQlbDmZRPzMtou&rOpwb!L9w@9X!M_toC_ zJ#dy|L;nNQ**nUldp_UvWL&s~W5A$Ae)CJZ3!O?Tmo62{v5HlqQ!v zMT8TJ6?I#6WVm5ARWMhc+(peQ)v_FtMB=7YI~FY{AWUmjdel2|c-vdO0}o0amSMTz z#>7mlpj(a6?lM#?uHD#)cb7>Ylv2RXoJ3HD$NJi-&KR5AWs4R`$yOkJ7`0{VNPL2L z+EXILQ)>^1`KZ(dY(MH*MgTc2!bviM#hP?^ls%pXl!DlwmUE#CXCwz^6s7}FxN(w+ zIhJvV4W9szu&Niz14RkB2$o7F>7vFd(>EZntRX$vib2T&dgmM$vWWtq z)d5&WNNO=Q;EY-nuWFAPkXZzvED$K$m9qaJ^L;eF94wKg4XOndE@ZC@z`R=}--~Xc zQtXvi0+3uC46lPIt?1SgmCVA03uMn9C{*cCJ0hL}43)@vVYd9s<3w!fqN2s@A_Il! z`qBEaiWiWIAk9}J2j)Iv2LL2QnjU%;%$6*@0F=7eFr7TiIh{xx zCIn)^yf8vqty&)7g%YgBykg@FZ-JWe0$5MrtTqZjDFp-1e9-? z1>hRG3NT+lDrECP&LWl_JDlaFt4wXj<3h^20G3pw9t;lnTveX5LvI1<2u59ILKwQB zq!5cJoaLc3_VUCU10omGfwPJa^I{nyyih1gu%K6G(SdG=vzozT+$a;{?8R)@EB4u2 zq?~G93J01+kqm)2BTSJz!SNP}J;iz&6^E51PO^~2S#@!*8n19hBgR>!5j$bHcFCLu zfCkxd@v03@ycjJikydywkp(r*^7Pk>{X%4^RHo`UBLXaOQOdHo^}583*_)KBOFef4 z;M;|Hix+b>oK)Vimxi}<#f6@Xvwnb&3n^>N>}7U<=7us6TZ~4FK@4XJk9T))lIADd zVK_;eu#18KYFNZsKBgruEQv7~VFoI1Cuy0?qh-HN?#trViF%eXu(avR)1RJoj$0byW)0<~lqR726 zJ*5X_W(SBpgLb)nCd?Zj3j};U&SKyHvN)4+Dd7|yDz>_DOQSc>(yu5~jz=~MP2q?k{b5Wmc z@S@ga7afmTL;(Ld#D}x|yMiM9n0nd3*=x9IU zR(mG$sRUf3Ua;K7zig9YSn^`b$6I=mYc;lFZ6*^YxMa^3XAFT*1Y?R9_OVN#9IzqK ztKOB828o$3px@j=!;~jXfU-y^A9QEzdSPvYvlvJ$&84KUbeFgKK%ZK$VrWEOF=C_a zFyoN9htH*^4S7L|%UaC8Zv*T0VKn z!iQ<740CuQ~8N^Atb{QVNKo_1KLE^=< z7GY$TfcnHRpr-B%99UQS44@2_aRGLKojA)_fpam620)SE^<*0-Sj0hf)Gn5U&H5@(KygS}sj_ zfxJ9n$Q!JUE<>fpfq2+kwixX^*7&|%18ogW+h#JQOUh$1h zM&!C&nl?^uIl&;6V+ar_iW2rv9`XQEQGnzdP(8TZnT>0`W`oJZYi+r3%WI)%n(C

y0FlD{ z;UxPdfJ(G1CeZ$6D;`kSqC-FQEq7tVtz4$~I4fgUF3*l|f?}6P;!slxoF!)I_vKiA zArh=#q|cQrgMzb^k{S{#WFM$PMvV&eE2ON#RVM!!EpdjHMR*$Sz!}fI7QxEPp+CPD zIG=v*$-`efm0CS+&%0Nzth*?Q@AWIM5l`no+5hkBF1&U8o6hfg-hOzU798Ki>YY(c4o`T=~+hF=yAc-0^+K@2^-t{p_bU-gwzv-EJuP=>4mEY#tvS z^U%7-TOZo(a!-u9a%rcP&m5h$`=+6NKHcVj|K-K)FL&K??GL`Ic6*+_`^<5tpZ=tB zWT#jAKHBQ=`ZfIu-}ZgK{>67EfB%;k3)dh0tnc*E%TsoLxBdNes#f|S zmUj6A26Q=f;k%P=YWKGb`n}d~-soQ4ro0Rz1UbvW1IdfloWo!E$W8Szm>9fg?ADZU< zET??>>l?0oXy-E@oN&b#oOPQ4xjzPvnIH59$x6#-0)zRh5MHsACr4do9I_p z_V1a~`&a+&s(-z3<0oGiXKd_RvG19m9{OeXpiIwaKP;TTZ-b-XS8rWiacZ+qGb?lzf zqw~nv`Q4W-ZqfV4@{jwk?(=HmwVPibwrlrmUEA&c%f;y(;x_EfKX<~8@t3}_``|0- z1Fv_U+Av_r6~}-5VC-hs8@99Nq)c9Uc5<<_J!yB+=A^wzTa$JsZA{viv@K~@(x#+6 zNn4V3ByC9AkF*_WH_~RLy+~V;b|P&=+K03aX&2Haq&-Mmkai$#K4 zK*~R9{DkC*lTuRCCQnJ9I&FH!jG38Pm(Q9#=Zd+G>>RvPm|swMO;K@4smnbdub-4H zC|_8yC}HTZ;Uh*~G-~viLGm@|A&2=}s3ub;X5mx&>VvHEqb42NrDAhXKFB||Z*GTn zm+KL9tQF>0R#8r0hjtSJUtBTP%KIJKWjb?)%ywpHDnCP}I4eX&xOkQx*T!0h4)4&e zgZ|sm!-IZ_6lm&`2*9u?l z@DnKr)imiC_0@bJC^tsm)Ukc1j_sRi#P>}Y4x4;sU++~?9xDI(`wZ~*XIVbJQXt>R zoH#9+-!cH;YYB{*6DQ2V<}M8I%!xCM3F-1FD)SSJSP5cRMFtAmh-;Mta{M+$w`uo3bKNsQ^&-QIfaqa#7 zWuRff=LPY_&u%aotn7$9f%V`4T;fmU!07&jE3`2*{~{URTR?`;6>;7PCs z9E`7XZUB?P#Nh}JR)TB5I`9A(Hv->&3c5l0=^{DOAy6j%** z>xlG$BfyMNXp>+KxDIRpYrw?O&<|FEMkmAzjs`2opk06oW6_Slday@lw4-q-cd-6q zloQwh?gZ_ZBE4WGSPxc%C&5~D{J7@=eU=_FqtN}NHb>J?r z0jv`y;q#nbp=UhWAs7da1{=T)pnC%H16F~jz*;a4U!I#V5&l6tm{%>(|3hfcE>5j(%{1KH&rC4`9_p2zLSUu@T>J4JLqgunJrUW^6*f zz)J8iSPeFSwU42n^hf$1hkr0`Gtvdtf(O9FEvQG(cmnk-Zm`P$_y_xgaZe&XuoiTK zHBX^mff+SOH&_oI1goD$d|=`;sJDTTgZ)A4R9O#DXh*~t$h*}sI z)xCY|HdRqtjwXd)=JNZIb^KOPYgi(~K=BzP@W1fHX@6WxTv*~JS-MR=BeuLvrE%Fg zV+RiJgBsJ}=YjU0Px})^z(eBm;eQ3>hJ@!K@|F0nM0`U;mTHO1wX`u(ak&xy>mavA z<6@E}?vCj3mTs$J##^knw-|5fzp`bLC1H81WXtHKt*2QMW2Q#6vy6r)$&wzy*+jvPmFtmHWhIyRj; z?eEgU)HN+ada0{2D(3G|mK9NxEmcuAFv$YRY*9ay0< zBulsDF-aEd(iYJr?JV7rR3RtFPS)2GEp1X`lLOb2Fbz=c#tl8kp=WC(J!L_9ij_*J zL0g00O$g^}2Rj8u%%5rlDY||#Vv-`)Pf~33nusNv8XG+$Qll}@9gRLH(}MPX{}f4c zN+9nk7OTtBEm`M#-vRVT+|GdCmGJv}D>zV2w@X`HDdn`hMY5&;(v~Swzp+SO|7435 zWvClxa%_x6WbhY|rAwKO#{Wj>9NigxSK6l1i7rQ-X`*uybVlzFQ<)N*1@H9;JFg4A zDHhkplt6kA_wp9#AWK`KT|^g$#he;DDNK?a8=Y!t^YXp}Z$gb2g3)N(C!rV90(JDk zIbGU&SNw8?NYGDLMwdwbtVpdcC5R=g5B~bY-wE-DV=(?#K-T3jJh+Qi^aN`yO5 zD`~Yt|E}(S|0TGVL+WD$WXB+DDQyw?ygjWTsYafd10NT@=7WpAeV*~uw!7rw+>JV8CWCy}zdm-Bo8K$BEe}^F33z@VbITG-H z9I{%--W7qWAH>Z*45JqPcstelbWa{1YhdbQSkaD)dtx3TVNxyj=vD13ZD@xs#=QpI z8zlE|Ncu7$YkwZ|M_DdpqaicXBK{UaHUcs;&C32mmH-*1I?6UrN9Py68yWs8k>e2A zPRN#p={x{gWsuHf_^XHPI>>&KfT8W`0kkW$OSG#=u_@+d^2_^DVbfxkM_*xzwEb(1 z^kUt!OY}^aww)X(yXYnDUbb{g+lQJvAma>L?gV8O#-qcCwie4{R-&y)y4}#T1$vf> z9vmW*HCunIp~Q~MA!V@+vRueydMV>n8p=ZIqXzO~Q$A7pNxGOwb?*S~xg*>YeaCRm zXWpYeksAnnU6@?b)D7}wkbfqAaP+|cV94y}`~5pa;IhO;Pqnm3x5O1l0whd2X!H)v zhaIwuAsZ!O5N|0wkHF z|3RP87X2}TzHX2o{U7y7{bV5ADTEt~YXkMOG}@=?NAg^Zd)7XfTgtt#JUatPQp&MC1|ENw*he)!o2KmSX4_7{EaU{4UPM6Q)hK}Z4=Epeza@dVmzCGO2@=H3R} ztBi0@(!CS+HsaoYlkTJNdklUfm3wpP?t(aaAm4HQnzmip>lh9B|5DbXuNdJnBIsKN z`NIEEUn=zNLbxh~dkWW5cdKNsal6cmSIXGFT;|0~TSecX$MV2LI5{?5O+Eqw(bc9s z#`FJ2x@1ph&ISK5U5mrgl^Q8s)zGyIx*q-GJYE~7YkasaX?w?^%i14naG6J`{?|A+ zGv`7veZt4>iLqka`eP6tF(7m-z8JCu$lRh2hxp5YY~?_XVU*=Uwk}Mz5VDP7vXzk4 zgvqKQ+Z86;2HE}~ne?&!kR61~ifi4+=Bhp>X*!B~hl2czE&my^qmcCp_@4oDGC6hv zLP?lz7?@86g%O$Tl^KIV^Ogu%`ykoH@R9{tH^}@f=Vsbv0qP9%o*8;U>rm*si30H$m3oLcjk4@q}@7Dr##A3QX+E zUfk=3dl&)&$6#C?hCB}PUqm`t#-ix82$m#kG|YJl)%6?*Ue@-#JtCJq(0uWaoHQv< zSu13QE?gvSvWM9%!SBCW!ik@&m40ImoOaw>iF@D6J*+?27F78)+Nfky)UR+pIi zVZLXi<8~YDo3_CIZAU5d#&uHTx=r#mE37R|ijBS_wCPNcrh{mWInZ|y`e1U@A?YoK ztPZldB2nXDG}c)A=+*^Hes5jVZwAU34$1Bi-_9=SO%!Qhh*$2ufra5JEr>& z;z`B|!W(fdh8+TFFICVr5Bt;4aBcM;bQM_&CR^OsTMCja_LxUtx+AReQlveM#{Y5X zuEid={JLhd_P=Mi{ZCTsw*FY??!CnCe+)tOIs)_mr7@E*8(V^f!pm4k>=T14bBrwb zO~oGh2XOzF<(_7#Op5tP(%*FBO6{FUo7w`sb(64{h-*2-KGi~Y9I}CdvWFFFvNy(c za7Og65lbjJR`r4QFeY^=e*c&Mx$ILcRc&KhMn_DqGz+y}mlBE4Q+^@p@Gyc1@!^%deU9@$mG4|t>HO22A&bVeH7AvmnA-@jt+eMBs0yZKa zLnTXQ*l3dyqW`9 za+s_bvP8%vy>cYtzY?-^$len{vvWA!tH*d_c-zyI~-`V__$?#p7f z5;I+j5+V$Z!F$)qv0}frK$rD$j4A9dP3Bc8mg=bJ9btn(QmoXeJl{Hru%`lj4WmV5 zJCS0ki;B5EavPZ-eOvN6x*PI88)Fr&Av#w6^$aAQ$)R6$2N zo~uPkc{QUWW-byJvQ>(Kc(K-UF@hb0j&5`P{-d~#Xy;Qbn=snd^orgRrY9*@+F=)L zy6i{z2b-%iwYNCgQXdtw8z~8|tUy1S2R#W_;hEJR>QS~i#ZnU;2|aDH@eBypXw!*Uh^e`xw39e=$YR|4uhLwL9}kV( zVAYs48v5+ew=$P|7wFRw=9KnmZ1{v!CpH`;EgKNF9$_zwkl)7VJ}ke==$Q8+m!GN+ zDZk^;SC{Aazd?PG=b~u-(J?cn{9r4BXQOIfDYknACh&6#{r>ZDZA{fRLGqdoxf}BP zMIJe?=${LbS(u`Lok>!Cdj-NCMA!`s8{D_mIwM*7w#@y4la!>^rh5@~^fisPNXqUI zWFsKk{-67MvOJMk`3GeucC0@J!i_~(yZmQ;D8M$+CnDOhB=tfa*4QpJ9YA_}NIB?1QGs?mbLo^sQmfMkLI|2vd(Ri7boTWp6+|ms{FGwgp~B z7_1WXo&c=4f}|6H!A?PGUVwwTcY555~JTc`(H5hh;9 zpV*xYEB1r%zR0E+I2z}0n9Kw}tLJ(IcE=WZ{7_@wV5q2uzGD1-%wk;2x}49Q<+-3d zUDnT8l4H?v_8pLUNge#}f`2Ua)G-3*qgIUPkX<1Xr9(Ztff2?Qdbi2@EO9A#ZZicF zz-~w}HoTMe9gw(t^n$%WxMw6U=m*QACv<3)dPmHv7Pq%t*(!Bu>ljB=JG?I;3rvYS z9sVmT`ECK+BC|ub0WwU{)p0S-KFBsf)+q{(G}#kL4eZ;3zkOo ztb@GIvc`QeD`Zx| zJfd#OJs<9E!o3apUf`Lk+^fR9!7Bpy+`-RVx8Pn4?x{5{{95r}3)x}FLdygz?Ko_1 zp%;nHqwq85mVnMce9{)>g`UH>w^gpyd>g%h?-m5=`lisTPUHTl1o`v$vjqMufj>*& z&l32v1pX|6KTF`x68N(Of=j^topvRVEo!2apgTEmhj#a-djNSMc@cRDIf}vG z`5PIn9*7u5Thc;yC3}!ovJW|!97c{NFC~-7$>a=jHhDFfOBRvy$#SxiyqR1@t|2#& zebh+)N`!(_{@_q6!`5E~Y`91j)`5W1ScBw5HN1jP`Cwr3v$P3Af z$Z_OWrZbW5iDWvt^evr_8FbGkuO@TJB62>tkX%CEOx{7>L#`+PNwAb%mFp4Ii=mh4ELO`cB9LM>@gLH2qpCq@F&y%&}KJozh9{C}8g#4U5PX0jt zMEc2=9KT}8PUM}Or=LZ4PqGg=m>foqA(O~davC|4oJ-ose6oo2k=K#S$d%+>P5zDCO};|DPQFKexR-X0?thR+$*;*D$lu85=XJPtWM{Gm*^3-N zCXge^i^=iiWO4>MhqRITWHIR_7m+uTE66*@yU7R0N6070XUONsm&n)1I`R;Cg#3d1 zmOMfJMn-X6*oy2xb|TLvdyxakq2y>XiA*J@lCww~nNJpzK5{X66S<09OKu=Hl8=*5 zlh2X6$(PAD$al#P$$HYVPq&XR=>D4gf&7X5oow*}+Y{M|Jd50CuBYklO%5P0Bu9{A z$;-%S`9L;~WV+MHX=Eljm$Z>i@*2`jE+nrfmyrpK=T^F_$a}~Ql4Tk+!y$^B#<`FHXN`2~5LY#@Iozd5AK%TIS}?!&YvJCWVU-H&Sj=hA&X zIe<(cN04L5@ni})oy;V!AnjxUSxT0ZOUM=Evz&ib(Y=G|@=|gl zIhmY6&LZcL*<=CfBFo5Y$tC16@>X&cIsLHC*J`@&BOf5=vmb7xdo%eA`8RS8`3m_a zd64{={3rQ2`3-r3JVi#oq|?=wj3c{}-N|0$1!O!qf*eC$LQWv3kQwA`vOV`pucq5c zmXIED0lApGiCjspCfAb>kQ>Rz$Qp77`8@eD`8rug{+&EReo1~qo*;iF{bZ|`b$MFI z&SW?8T(S>2kW3&iA}=MA$;o5}Ig7lKw3AMtr4I0r@fcPx1@$Tk<6N3+X3Ya()m?b|lXtdy?mq{m3+~-v`q@lpIYalC#(^ zC(@m(Uf{($cXZDrz0~&$*ST{kw~^i0p7ZD~F~gA+8Og$zRCRWXo4{ys_jlw*M}4pF^HU z_9X|9@#F|{9GOI>ks0LW&Qc7J^4BL4SACMos8l7qCMG}>_PS>2a&_bF=P^%MrM$+$zd#ytLg5xN!MFG z-7azgxtLr=t|Zrx>&cDeV`L5aH*ycTmwbbq|B;UWJ-QE(pOBxE$H@lrNAh_(nT-of#;FWrO4q2xv6C1f)B7T0TObk8Jblk>-gF8AjsU-!Cp@1c7w+uc68&*1p-Cfx_g56Mr+FGvUDIZpQv zw5v&bt+J9)voI(<&M zi%2(VJ)-ZI(|tX;oLot+A=i@+lAFjU$?fDW@@4V>`40I3c`wWFA9Q~~eog*B{z68v zUR#kJ$WG)r> zqnM6|=-x~|P3|OX$yZ4i$CbC}{($_5tS66=-;qC(#q2ky=#Jrg39)1+@*L7i_9X|A z3FK%pi5$RkOQm}nIh(wc`M!$o9I}9Pkv?)Uxs1GxTtnVRK0rP~K0$6LpCfC@SI7h8 zd*p}Y6OZYBQcw5irp1Zy;BYH5^}7(S0|0Kk4Q3+K1?Vl-xpYC7&Z-B3~!pAwMLKke`#^ zkUxbYDtNBBzpBGqHd$tC0p@(yx5+s{38KR`ZAZXvgk&yp82-|IQf?52D#`3Cu}Dd%{8i0&ig z70mZhy1ynH$bXZk$Y{2Mc4QoR7TJ^RO%5az$dTkYGLcLrr<1eEtH^Bf8q!U6eum>2 z-Al+!=IdsNONh{fp%xAs^(>sf zz}>{D}Sbb-Ldr50RgcN6BxGK=iNdVGxg$@3`BCJV?ReE;a5tj7|{z2rjj z%g=SXFQ*;4p7Ld+h5OpK&|O7#=5wmM>9#+u^^D`b(gw;OA|E54CU=sx#CFqz?m289-_xIy?w{zc<@*G` z(;fYuu3r!RwWT|bJd^A}_98DJhma%4apX-*&jh;fp#I5pPbX)Yd`72Z9^Khw0qG*W z?`wZPx+}=V)N?t%-NRB3x$P{uanMGbnI!Gs3OnS+Ma{y_dr`pK58{|;nlvK!fx>_-kEhm&K-OUa4k6f%RH zMQ(pw=le>!bIEJS`D8h{gj`DAX3DuASVi~U3m?c@vOUh;MFZSsBc zFnN?bMt(z{Ab%xKlP$PE*Ookk>`IHB=08gCpVIhkx!Ca$!EzI$ydob@&ob{@-y-n`7L>Z{FyvWuBF|@ zj~=M^W7?8ukX^}h$=>7uaws{9yo8)UP9`(R+2mDZHd#oz$TD&)*UkL{y1yXLq}@DD_xI#arqj9isaa@^kWQ@&tK` zjN-mTYw`^8OtJ^ri|k7dB8QS=$V74yIi1WR=aNIVX*;x?_TE8x9$8F!$c5zf7%lQD^?~sSc7nuGdbbmp9L!KmmCH-Ve z?zgoy_Z!JG$?jwyau7M397B#~JtomTiJVGik@Lu0vWRq(Fa1@QQw80XA8pm~-Sf2OOZ4{|xq^I${E)0Cza+mQPmsTo#y_;)7Gx~h zkvyC1N%kQJlf%ieXj0 zk(@*hWcsGiJ(CYuaa+) z?~;Efe`9|?O!sHxOy=hp-QSQW$=^tW&sSTM?a7Yh*^cTAZ?8AT#lO~DIZ5B zktt+4Ig^}A+Q~e!n4C{8AQzK2kT;XJldH-1IB!@-w{B(lPS6%=`fr%-zl6CT4|6|D zcY7TSU%aO;@G}PLXt7>v!dIKBqi$fdBEAMw9rC@3a^NdK)p3aT<-79aFz^3(T7Ug; zO^lYySEtM2X2ke8A$1(%ee*k?hts2czn&cOy<2ja-}|OrhQVNlQKHkQ&-fm+*4l@B zCz>2|8u;2?b=17CY048jYqyzh_e@hhJ?_ zU%zaovw`l7_%3-lexbXAsZfjmpPlQkF-s&=WkS7nCz2VYoph6xWEELW){wPi9a&E{ zkj6g^b;OZYGJ#AaGe|q>CM(G*vYMXHB@@U*GJ~{}ZnBcBBCE+7 zvX-nP>&XVv_>A$BRx*K1Br`}m=_V`5DzciaA#2GxvYu=pjiZd8w2}#ABAG$jNjF(Z zR*}_Y4OvUpk@aK)X?)K3Nh_(P|Noua$PXpri25I+6#rtA#6BgI;paPXEjGZkQ&p8( zW7T5K`fD|-$&97ijUW+^nkD*vCH+?|((Vk>O`2L#CQKM>?SFZ8S*fqgI&^6Ki1>sd zL(7zN==H;f#V3pyKyk$A0z%Q(!uZ}F5b#3mT@>!DM1JM4sfNg@4yv#Lzq0Ba`Ss_%uw05h%&kx^_ZKl<%RuhH~{g zlej0ZUr2r{dujj48pcGG`^gl%V|DJOBtq1XMkJs{tDgPVgaTjX2gYpk3ucW-AzHNK~ zxzukW%h{Y?eMkT9VcMhmO&aLxgnlda703E&LH#`-m-NJ4s{O0qQo+43kVh)FB>J~b z*Z$)WpByul{!WJdQznqeqW^>$TA+UG0{)%!Uw=f)rM%?0hW_g^wS1fw8x@qtWofxN zzg$f{_Rq9DiTsSjd!U( z-qcg66(>^vSjy{e(1Hre<+o*}ousmznA6WIDYsH?rT%>CF~>76Ke*^U- zhPA`BN`8(}&Gy`%dLC8sPDVA~Gf1L*2mRZ_{O^Z6QvH6U{C77p!tzy5J^QK0%x`n! z*O$tF7h{Xr@R=S#qbtX~zFY zrv5%!zqyY5lJbPRwES<>)(Q*5PUsg6MOv?oK$k{C-~gDwJx_xem~$4-aJ#ugMI4jQIN+Wopns7>EqI7 z{Li5NngKc?1x$~fa$}7aJVHfFn$fcv6X;0owyGKbkC^e^sr6S<|4z#7Y$q!zpVHYd ztjL!Umamta(SH!~j*_Bkt>3J#&!|6v{pc*}|B>?APTD_yI#C_6j*pZttCGhV8Jy4b zq5n@Yaf;-BB>h`CKe>SZ6DfDI;IE@Rlkyst|EH9fDLEZMSV{l&7wGhx>zR8gPvH2g zHZKrv3*_eqg*Pu>ZASk`)Kk-4>o@z+50r<`5B-!U^wj=GF@jE5kVGnwzD#>{OEdcKqyIXq*7GRS|4cLf<#$LU|8f z70tB6FPiZ$KQ0%k{LeuF%D7W|wvKl!;}}GF0?XNK50@!e2 zzLsyG{8q|q!p7fcn$iCX{afijm3qEuX8b)u|CM3w`5Tc(cQnlXUaB#=HZ!j{(M)>U zwvSw%{ggb;sJS;ZzvC!x2+MB{VX>x+jW?}+*B zG1`AL4|VKN{^t?_ zafi)wKBL@9JNXpDL^Y%TH~P=$pwoW|{ddHGEB&;R^N`+@k5=-agz$0-{nvHYdUjF% zN;CeiX-2-7dhAoRo~hLHa5Mg=!;nfktG?A9`_ca%>Z!U%>oM)XKbz5WlKvYeY5xh- z6Q|}6*p=bD$Q*YDQf`+G930i^jGy(TJR_{#UPXCrn0+Wzat02<64O7&>!)~6ers9s zYj8en=4%V(l?!xw4%7cW%B`GNccEN@~CF)c9&-4{gfQ#vsUXd%Q=nm29_JTp*n2M=yB7( zo8x9W{ohP^9oH|Wp25x7$$RKO<3639t< z>o_w#Cn%5Ocx2|cb0@YpjxQ^<8lxZO)m)dE^U_h2*U3gJj@#*fF69R8ExN5b@+hzB zqWv$W{07S1=V|#1C{N_Px`h6BDLEZMc$@y~!tC&2$Watcj_>F{W3Eom zDGlQk<+Ys8nDdRUv~Tuu?U9eCjd;rI!rFNnn3gy;|wVd0yMj_>uv=1yMV>#t^oA!T{dLE!W zAKScqe(P5KBoV;F#CCm@=A|Zu$_8(C_UKM`d+Jw zr$+gWXo=VOK?}_7=24U<(9W3sF|C>OWYd4fXdPiY#w))QE&AO~El|G!i>U5uM$bl5 z59j|^F`dtvdRA#YaH``i%4@>bWk(^8!@M+nTxg*GM4#5f?rm7q{1fZAu>RYV@`k&# z|DlZc(q`tXGw9!-eaoW%e9Ei2-oJ_RMa}5Blm4yDmucUgq1;}k(?hdmyiIv+OD!Ky z{r{l6CPB;RQvRco(-DNW*m#N5-p*}CK1#{s3@g`_=KkJf$}>`RykF8jnQP^z|dn$Oo%&xvBqJ>Q7jw^_%m_@0!sQjg4!`R|EIQ%zXy=4QeG1>qosQ z&)`0rS#Cp>ylHweA-6Ua8`;!TMLWReVw6*EupOFh_||6hY^47L?hoA0xL%{&&h?JD z|L~cTH%-u|YQ4}@{#!HtyJAR|@`)R&%bDihNT9r${S?zSb!1Uq6SfXoOnLb8TuU?c zbtnC2&|sM3vXPnN@ePf488(|EyU^xyGj3u81U)! zmF4B(GS}&G<`;T>PLIu3V#_IZl{&ppk?XSM7rU|@#kO3Z%j2~<$`%?qt`c{#)91{M zPl)WpmRDF>XmfZxh}Bu@^Hdml9!H7OmRnX*Qh^{rE*pIMLcHco&YV6C3359;UZ<_V zxo`w8y*^K2X}*z-^dgboqC&T=yr2*{aXWIHhO^XL=5ZSNPM^({eT_56XTz-$!;LUL zn+|Go`#kYb>qEL#EF#Y>bI0enO1(a}$K}Qi=C;7)D)KV)0!ML~(+sE-hJPF-(Uj&xj~Da?%2i4+LYVkMug8JnDsgy9@@< zb9!`RH>)hig?E0O9%yOe+3hMWHocYk3X8qSzPG?JY~)2YpT|+^&2xE5j42`-IdoXC z2u{N*m4=pxCYL>YnBmOHEwB|hyal$rvQkxIC}ekqZK09v@H#IVVaq8%-5TT5GKP<_ z&7M9pIXx{ii%BYXW_w*ZMbdcPD1NV0gD=M|{m|>=mD5pL=2q8e2Mg4N*IAlt_=>%z zKV0d1xKQ`Xy*9VgBe_7zN^_BqBC6BXssr;n*O^_GZ!31?+e(~XuOr_HqhLz%3X2gC zRqXXSN~E9YSaq5Zi^Qh;wZR;yo?VDWy~v3)A}^{y-7b&h(Hl}Gs76s2>Ot3)*O}u+ zZ4?bff#lnAdd z(x;D4O1Dj)G%0gpmMtr3eELKQp?Y#2YNaSKB|UBY1lzFq;qfEb=_Yub=y5Y0;9hR&GM8v*=_>GgQkWyzR+jOQ3>a5cXm;3-Y{E1i6h6R z+pvMYUkaNS5+@Cb3Yn>_>`W(YEVArGIpz2&+)fy`VplorE=*M*>~J#`y2pqqXYnQF z=A!JfT+Duxe&;De7ZyWrOL6*=WT21&GaxP%Lt*B0JPcB!M#*uvapqM>rtlX? zmz1NoFuxR|mNq$_K(R_^g%L)eu)?)Da~(d1p?hJ7CN@N$N1O1lc4;eeR=6F7FsQoV zVKs6?gF6tS*y#){a;-%=PN?1jR2WQX&VmpfwzTQ+mrEj2MN^{&55lRMKNk^^v66=v&A2!q| zah9O@M-DhqrY9Lb52_^Bi^@?WwW`(#hDfUpDONb7SbgPAN0AL<=kd7H7)Vs)i2=YqPVwE|mWUp}m z3r(=Df9Xt~!UZxhm0HtQl{(N#r zy*QHji<)0bHwo@vLop@L6Qq#T>3YbJ<;8flB7t2FF&mh~h1rboZsXOB1#LyO7fc~x zM{w$WZiJ_RF zQfGNsB?s3{TB)AfFqmpA8JH$WcSk{(MpCy-=|g##F~Y0`?gTAsWTn!ia2m(696kGh z^@GVMl1Z&C&rw($C?#`Vo8iE!dUm0&V7lAqRax*BlwlTHUK*B<;KGr0p-l!Kz4~Kz zWMGgLU;);X*%hT&;0I!pI=N@RM_Q)x9NqDbZ!T%iTxQiT+VD?Bre%_2A_xfFec$4_nCK9Y*ZOy>Vlh7$PkcIP*|KB$Vby5Pi8_`5$N%=X={`E)8mCs zq3T!$w!2K7fu5!tj_PmPE82=Sz~L3B>%Pp5c-4p)J}pK2#xg7<`(lL5;mI6+^lG$8 z5901hw$mtUZau;!MNY9^*J~B3bA@cpXgk>?f?{kR>OSfXZ_U{CLE@c`5*B!xmo+Zw zm*s9#L#nn@uxRx-u`%S#@i@(ONKhMXv`K1rld(!QkFk}MVk4@wFh?6z-N&#M<&+H- zH9-tDC&8^zkFqn9u(hDV{U_7NEiaWYrXhIA4U>VDe?*%hCNIks+(y-2ir!7b)&Pr( zLvWzI*lgKeSvq277dg+^KP*(O$m~98rAlPhOJLq-PI67-shU{hhDgXPK<3PWB^g=NGVU~)S0jn4?wfA==tQW}$4pSRQkq7FwIkZNIZsB8RK;aBE)AMam4d4_DA~&T z>xm~O!KP`&%uOxFQ3;K^AZpfdd8zE-Ieao{uwj)bGt`iB4%)fW`@v0W8iNA5QP50X z=UBvzixuQa4-k4=K>Ca9xf-^#tf?}0<|6`(?DBvh%YmsUo2WMII=gIiSUjhyZFJ-Z z^PP~&!9=CPyFf+l2(@TBS&bue<6st8v%}(*xG_G-UI=uDZ)a%@+`({Tj13qa4u0B$ zY2{24B*UFc?N@ulI=s!64^yK18#Wtta9x{f-so}8rx5K&s#c~b*gBI!i&$h@gU%WD z_SO1H&Hd0g%>@+`9Wt14XF*b2?kV(zZxD(c6CLam<%i`UILXSMJFwjzY_F6Mt8+ck zkRb)z>!|TOM_F-%p3vBS^-SBG*Xx=Od1BFM!ej^!*bgJ#TT$Y3WP=#h6bsBNwW4+# z@ue<28_6#%i^aJiL%Qud=Dwir6_59+7NlvrM$}~yb+&UQHm%uv9Y1@e^0K9S|&+%$EEFPEf`7Su+0mLxnJ}C6q)81uB7#l0sk`7R7Iy!rhXCU?-YnSRrsN%@?we7A<_w(~){$$EyD z^h-L;^i!Nu8Q}j(T;*8$qE*c>T+J55eKB_1eG5IK1~CeBjL~b(nkW36SXsN zHp7{$!JXjnZiY8${D=6T4G;g7j>`Nz&T5Gu=rH3oMSE}&9KZQ_1(W7`rKbPz@_U8h z&H6V#=VkKSiDpPmYpBzB6K;v$3~zqU)8uu5iq!$bU1Ey`Mn8;{>$*cBdny@jNkmcbv?ryiMSbb zSc9(RQr^3hA_|1(_tMnQ)#z9t4D%lzUS2zu_!GkXnc>a%&CJ{4SB_wYWl?)@ zXz5O?cFK2?%*4N$Z`1zBdrfBAwNHKCd4mrBDBi;fKFoMc8D7td7~Zx)hv#eYruRU) HO~L;Gqu+M3 diff --git a/tests/relay_synchronous_test.c b/tests/relay_synchronous_test.c index 52558f01..fe8ebe8b 100644 --- a/tests/relay_synchronous_test.c +++ b/tests/relay_synchronous_test.c @@ -62,9 +62,17 @@ void on_event(cJSON* event, const char* relay_url, void* user_data) { } // EOSE callback - called when End of Stored Events is received -void on_eose(void* user_data) { +void on_eose(cJSON** events, int event_count, void* user_data) { (void)user_data; // Suppress unused parameter warning - printf("📋 EOSE received - all stored events delivered\n"); + printf("📋 EOSE received - %d events collected\n", event_count); + + // Log collected events if any + for (int i = 0; i < event_count; i++) { + cJSON* id = cJSON_GetObjectItem(events[i], "id"); + if (id && cJSON_IsString(id)) { + printf(" Event %d: %.12s...\n", i + 1, cJSON_GetStringValue(id)); + } + } fflush(stdout); } @@ -174,7 +182,7 @@ int main() { printf("%s\n\n", filter_json); free(filter_json); - // Create subscription + // Create subscription with new parameters nostr_pool_subscription_t* subscription = nostr_relay_pool_subscribe( pool, relay_urls, @@ -183,7 +191,11 @@ int main() { on_event, // Event callback on_eose, // EOSE callback NULL, // User data (not used) - 0 // close_on_eose (false - keep subscription open) + 0, // close_on_eose (false - keep subscription open) + 1, // enable_deduplication + NOSTR_POOL_EOSE_FULL_SET, // result_mode + 30, // relay_timeout_seconds + 60 // eose_timeout_seconds ); if (!subscription) {